summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2009-05-04 19:28:53 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2009-05-04 19:28:53 +0000
commit3b173a2dade8162e6fcfa01e80ab0c3fd92d515f (patch)
tree0392674c24bc49b11b677d7a43bf46b972efdd8f /Source/Core/Common
parentc6a16ac3b6c2585f75970da30993dcae58a9bb0a (diff)
give serial port 1 it's own log
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3154 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/Src/Log.h1
-rw-r--r--Source/Core/Common/Src/LogManager.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Common/Src/Log.h b/Source/Core/Common/Src/Log.h
index e607c464c5..dd7ce841c3 100644
--- a/Source/Core/Common/Src/Log.h
+++ b/Source/Core/Common/Src/Log.h
@@ -52,6 +52,7 @@ enum LOG_TYPE {
PERIPHERALINTERFACE,
PIXELENGINE,
SERIALINTERFACE,
+ SP1,
STREAMINGINTERFACE,
VIDEO,
VIDEOINTERFACE,
diff --git a/Source/Core/Common/Src/LogManager.cpp b/Source/Core/Common/Src/LogManager.cpp
index 71bafb9529..d57f51600c 100644
--- a/Source/Core/Common/Src/LogManager.cpp
+++ b/Source/Core/Common/Src/LogManager.cpp
@@ -34,6 +34,7 @@ LogManager::LogManager()\
m_Log[LogTypes::SERIALINTERFACE] = new LogContainer("SI", "SerialInt");
m_Log[LogTypes::PERIPHERALINTERFACE]= new LogContainer("PI", "PeripheralInt");
m_Log[LogTypes::MEMMAP] = new LogContainer("MI", "MI & memmap");
+ m_Log[LogTypes::SP1] = new LogContainer("SP1", "Serial Port 1");
m_Log[LogTypes::STREAMINGINTERFACE] = new LogContainer("Stream", "StreamingInt");
m_Log[LogTypes::DSPINTERFACE] = new LogContainer("DSP", "DSPInterface");
m_Log[LogTypes::DVDINTERFACE] = new LogContainer("DVD", "DVDInterface");