Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove some spurious endlines at the end of log messages
  • Loading branch information
delroth committed Aug 20, 2013
1 parent 0521b6a commit a3a4f21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/VideoCommon/Src/XFStructs.cpp
Expand Up @@ -172,7 +172,7 @@ void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
case 0x104d:
case 0x104e:
case 0x104f:
DEBUG_LOG(VIDEO, "Possible Normal Mtx XF reg?: %x=%x\n", address, newValue);
DEBUG_LOG(VIDEO, "Possible Normal Mtx XF reg?: %x=%x", address, newValue);
break;

case 0x1013:
Expand All @@ -182,7 +182,7 @@ void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
case 0x1017:

default:
WARN_LOG(VIDEO, "Unknown XF Reg: %x=%x\n", address, newValue);
WARN_LOG(VIDEO, "Unknown XF Reg: %x=%x", address, newValue);
break;
}

Expand All @@ -199,7 +199,7 @@ void LoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData)
// do not allow writes past registers
if (baseAddress + transferSize > 0x1058)
{
INFO_LOG(VIDEO, "XF load exceeds address space: %x %d bytes\n", baseAddress, transferSize);
INFO_LOG(VIDEO, "XF load exceeds address space: %x %d bytes", baseAddress, transferSize);

if (baseAddress >= 0x1058)
transferSize = 0;
Expand Down

0 comments on commit a3a4f21

Please sign in to comment.