diff options
| author | Scott Mansell <phiren@gmail.com> | 2015-09-10 18:27:31 +1200 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2015-09-10 18:38:45 +1200 |
| commit | de9310fe7082b2d1c66f9637f497693d771eff1a (patch) | |
| tree | 842d8e6845aa07d1fab49dba9ef897eda763424b /Source/Core/Common/Logging/LogManager.cpp | |
| parent | f2771695a29e17201ac925eaca1aa7204cea93ca (diff) | |
Split OpenGL errors into a separate logtype from Video errors.
Allows them to be enabled/disabled separately.
Diffstat (limited to 'Source/Core/Common/Logging/LogManager.cpp')
| -rw-r--r-- | Source/Core/Common/Logging/LogManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp index 29b88f168e..26b81e5720 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -82,6 +82,7 @@ LogManager::LogManager() m_Log[LogTypes::ACTIONREPLAY] = new LogContainer("ActionReplay", "ActionReplay"); m_Log[LogTypes::MEMCARD_MANAGER] = new LogContainer("MemCard Manager", "MemCard Manager"); m_Log[LogTypes::NETPLAY] = new LogContainer("NETPLAY", "Netplay"); + m_Log[LogTypes::HOST_GPU] = new LogContainer("Host GPU", "Host GPU"); m_fileLog = new FileLogListener(File::GetUserPath(F_MAINLOG_IDX)); m_consoleLog = new ConsoleListener(); |
