Avoid compile warning if logging is off.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@203 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-08-14 20:39:51 +00:00
parent 4f744ee762
commit 71f9655b70
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ void Console_Submit(const char *cmd)
if (addr!=0)
{
u32 EA = Memory::CheckDTLB(addr, Memory::FLAG_NO_EXCEPTION);
LOG(CONSOLE, "EA 0x%08x to 0x%08x", addr, EA);
LOG(CONSOLE, "EA 0x%08x to 0x%08x",
addr, Memory::CheckDTLB(addr, Memory::FLAG_NO_EXCEPTION));
}
else
{