mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 06:51:17 +01:00
Call CheckDTLB always, only keep result if logging is enabled. Thanks to hrydgard for reviewing my previous commit.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@217 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
9b676c0a01
commit
9edf51c64f
@ -79,8 +79,11 @@ void Console_Submit(const char *cmd)
|
||||
|
||||
if (addr!=0)
|
||||
{
|
||||
LOG(CONSOLE, "EA 0x%08x to 0x%08x",
|
||||
addr, Memory::CheckDTLB(addr, Memory::FLAG_NO_EXCEPTION));
|
||||
#ifdef LOGGING
|
||||
u32 EA =
|
||||
#endif
|
||||
Memory::CheckDTLB(addr, Memory::FLAG_NO_EXCEPTION);
|
||||
LOG(CONSOLE, "EA 0x%08x to 0x%08x", addr, EA);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user