diff options
| author | 2013-09-17 22:58:55 -0400 | |
|---|---|---|
| committer | 2013-09-17 22:58:55 -0400 | |
| commit | cdbe6557e83ba53355595a8dd9f096e537e97758 (patch) | |
| tree | 813a58a6cf7b623961c66b4a47ac06857adb89b5 /src/common | |
| parent | added default windows include (diff) | |
| download | yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar.gz yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar.xz yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.zip | |
changed log CPU from PPC to ARM11
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/src/log.h | 2 | ||||
| -rw-r--r-- | src/common/src/log_manager.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/common/src/log.h b/src/common/src/log.h index 8691a825f..c2549affb 100644 --- a/src/common/src/log.h +++ b/src/common/src/log.h | |||
| @@ -32,7 +32,7 @@ enum LOG_TYPE { | |||
| 32 | DYNA_REC, | 32 | DYNA_REC, |
| 33 | EXPANSIONINTERFACE, | 33 | EXPANSIONINTERFACE, |
| 34 | GDB_STUB, | 34 | GDB_STUB, |
| 35 | POWERPC, | 35 | ARM11, |
| 36 | GPFIFO, | 36 | GPFIFO, |
| 37 | OSHLE, | 37 | OSHLE, |
| 38 | MASTER_LOG, | 38 | MASTER_LOG, |
diff --git a/src/common/src/log_manager.cpp b/src/common/src/log_manager.cpp index c19f728f8..e202d01d3 100644 --- a/src/common/src/log_manager.cpp +++ b/src/common/src/log_manager.cpp | |||
| @@ -49,7 +49,7 @@ LogManager::LogManager() | |||
| 49 | m_Log[LogTypes::EXPANSIONINTERFACE] = new LogContainer("EXI", "ExpansionInt"); | 49 | m_Log[LogTypes::EXPANSIONINTERFACE] = new LogContainer("EXI", "ExpansionInt"); |
| 50 | m_Log[LogTypes::GDB_STUB] = new LogContainer("GDB_STUB", "GDB Stub"); | 50 | m_Log[LogTypes::GDB_STUB] = new LogContainer("GDB_STUB", "GDB Stub"); |
| 51 | m_Log[LogTypes::AUDIO_INTERFACE] = new LogContainer("AI", "AudioInt"); | 51 | m_Log[LogTypes::AUDIO_INTERFACE] = new LogContainer("AI", "AudioInt"); |
| 52 | m_Log[LogTypes::POWERPC] = new LogContainer("PowerPC", "IBM CPU"); | 52 | m_Log[LogTypes::ARM11] = new LogContainer("ARM11", "ARM11"); |
| 53 | m_Log[LogTypes::OSHLE] = new LogContainer("HLE", "HLE"); | 53 | m_Log[LogTypes::OSHLE] = new LogContainer("HLE", "HLE"); |
| 54 | m_Log[LogTypes::DSPHLE] = new LogContainer("DSPHLE", "DSP HLE"); | 54 | m_Log[LogTypes::DSPHLE] = new LogContainer("DSPHLE", "DSP HLE"); |
| 55 | m_Log[LogTypes::DSPLLE] = new LogContainer("DSPLLE", "DSP LLE"); | 55 | m_Log[LogTypes::DSPLLE] = new LogContainer("DSPLLE", "DSP LLE"); |
| @@ -130,6 +130,7 @@ void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, | |||
| 130 | #ifdef ANDROID | 130 | #ifdef ANDROID |
| 131 | Host_SysMessage(msg); | 131 | Host_SysMessage(msg); |
| 132 | #endif | 132 | #endif |
| 133 | printf(msg); // TODO(ShizZy): RemoveMe when I no longer need this | ||
| 133 | log->Trigger(level, msg); | 134 | log->Trigger(level, msg); |
| 134 | } | 135 | } |
| 135 | 136 | ||