summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-07-26 19:07:19 -0400
committerLioncash <mathew1800@gmail.com>2014-07-26 19:07:19 -0400
commit0b8a6f852bbd1cd96301a025bc92562eeffdd4f9 (patch)
tree01fbe477540153af1f9d67d8e3854133aabe1f8c /Source/Core
parent70ba8cfbc20ada4eb2be2558dd23aef6eb4c9d73 (diff)
Core: Use character literals within EXI_DeviceIPL
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/HW/EXI_DeviceIPL.cpp4
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;