diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-07-26 19:07:19 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-07-26 19:07:19 -0400 |
| commit | 0b8a6f852bbd1cd96301a025bc92562eeffdd4f9 (patch) | |
| tree | 01fbe477540153af1f9d67d8e3854133aabe1f8c /Source | |
| parent | 70ba8cfbc20ada4eb2be2558dd23aef6eb4c9d73 (diff) | |
Core: Use character literals within EXI_DeviceIPL
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/HW/EXI_DeviceIPL.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/HW/EXI_DeviceIPL.cpp b/Source/Core/Core/HW/EXI_DeviceIPL.cpp index dcfca8ec58..39f7e36aa1 100644 --- a/Source/Core/Core/HW/EXI_DeviceIPL.cpp +++ b/Source/Core/Core/HW/EXI_DeviceIPL.cpp @@ -275,9 +275,9 @@ void CEXIIPL::TransferByte(u8& _uByte) { if (_uByte != '\0') m_szBuffer[m_count++] = _uByte; - if (m_count >= 255 || _uByte == 0xD) + if (m_count >= 255 || _uByte == '\r') { - m_szBuffer[m_count] = 0x00; + m_szBuffer[m_count] = '\0'; NOTICE_LOG(OSREPORT, "%s", m_szBuffer); memset(m_szBuffer, 0, sizeof(m_szBuffer)); m_count = 0; |
