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

View File

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