mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
Include system headers using "#include <file.h>", so GCC will not issue warnings about them.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@331 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -15,8 +15,7 @@
|
||||
// Official SVN repository and contact information can be found at
|
||||
// http://code.google.com/p/dolphin-emu/
|
||||
#include <iostream>
|
||||
|
||||
#include "string.h"
|
||||
#include <cstring>
|
||||
|
||||
#include "Common.h"
|
||||
#include "Thread.h"
|
||||
@ -74,10 +73,10 @@ void Console_Submit(const char *cmd)
|
||||
sscanf(cmd, "%s %08x", temp, &addr);
|
||||
|
||||
if (addr!=0)
|
||||
{
|
||||
#ifdef LOGGING
|
||||
u32 EA =
|
||||
#endif
|
||||
{
|
||||
#ifdef LOGGING
|
||||
u32 EA =
|
||||
#endif
|
||||
Memory::CheckDTLB(addr, Memory::FLAG_NO_EXCEPTION);
|
||||
LOG(CONSOLE, "EA 0x%08x to 0x%08x", addr, EA);
|
||||
}
|
||||
|
Reference in New Issue
Block a user