summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authordaco65 <daco65@gmail.com>2009-08-15 14:34:52 +0000
committerdaco65 <daco65@gmail.com>2009-08-15 14:34:52 +0000
commit3311434d41021884dac616f5428aa528c9ec7979 (patch)
tree903978e04cedb6b9decc33f9632a49f89c110119 /Source/Core/Common
parentd29088773b629dd433d550bba525959ff9218f11 (diff)
NETPLAY : display game name correctly in gui , added netplay to logmanager (netplay is horribly in seeing what its doing). hoping to get netplay to work again cause its borked
LLE: warning fix (would linux hate {} ? ) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3987 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 ca2ff1ce75..a24f7e65f0 100644
--- a/Source/Core/Common/Src/Log.h
+++ b/Source/Core/Common/Src/Log.h
@@ -69,6 +69,7 @@ enum LOG_TYPE {
WII_IPC_STM,
WII_IPC_WIIMOTE,
WIIMOTE,
+ NETPLAY,
NUMBER_OF_LOGS // Must be last
};
diff --git a/Source/Core/Common/Src/LogManager.cpp b/Source/Core/Common/Src/LogManager.cpp
index 6fb94f975f..d51f4d18ac 100644
--- a/Source/Core/Common/Src/LogManager.cpp
+++ b/Source/Core/Common/Src/LogManager.cpp
@@ -72,6 +72,7 @@ LogManager::LogManager()\
m_Log[LogTypes::WII_IPC_WIIMOTE] = new LogContainer("WII_IPC_WIIMOTE","WII IPC WIIMOTE");
m_Log[LogTypes::ACTIONREPLAY] = new LogContainer("ActionReplay", "ActionReplay");
m_Log[LogTypes::MEMCARD_MANAGER] = new LogContainer("MemCard Manger", "MemCard Manger");
+ m_Log[LogTypes::NETPLAY] = new LogContainer("NETPLAY" , "Netplay");
m_fileLog = new FileLogListener(MAIN_LOG_FILE);
m_consoleLog = new ConsoleListener();