summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorShizZy <shizzy@6bit.net>2013-09-18 04:58:55 +0200
committerShizZy <shizzy@6bit.net>2013-09-18 04:58:55 +0200
commitcdbe6557e83ba53355595a8dd9f096e537e97758 (patch)
tree813a58a6cf7b623961c66b4a47ac06857adb89b5 /src
parentadded default windows include (diff)
downloadyuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar
yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar.gz
yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar.bz2
yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar.lz
yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar.xz
yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.tar.zst
yuzu-cdbe6557e83ba53355595a8dd9f096e537e97758.zip
Diffstat (limited to 'src')
-rw-r--r--src/common/src/log.h2
-rw-r--r--src/common/src/log_manager.cpp3
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 {
DYNA_REC,
EXPANSIONINTERFACE,
GDB_STUB,
- POWERPC,
+ ARM11,
GPFIFO,
OSHLE,
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()
m_Log[LogTypes::EXPANSIONINTERFACE] = new LogContainer("EXI", "ExpansionInt");
m_Log[LogTypes::GDB_STUB] = new LogContainer("GDB_STUB", "GDB Stub");
m_Log[LogTypes::AUDIO_INTERFACE] = new LogContainer("AI", "AudioInt");
- m_Log[LogTypes::POWERPC] = new LogContainer("PowerPC", "IBM CPU");
+ m_Log[LogTypes::ARM11] = new LogContainer("ARM11", "ARM11");
m_Log[LogTypes::OSHLE] = new LogContainer("HLE", "HLE");
m_Log[LogTypes::DSPHLE] = new LogContainer("DSPHLE", "DSP HLE");
m_Log[LogTypes::DSPLLE] = new LogContainer("DSPLLE", "DSP LLE");
@@ -130,6 +130,7 @@ void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
#ifdef ANDROID
Host_SysMessage(msg);
#endif
+ printf(msg); // TODO(ShizZy): RemoveMe when I no longer need this
log->Trigger(level, msg);
}