summaryrefslogtreecommitdiff
path: root/src/common/log_manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/log_manager.cpp')
-rw-r--r--src/common/log_manager.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/log_manager.cpp b/src/common/log_manager.cpp
index 2ef7d98c0..128c15388 100644
--- a/src/common/log_manager.cpp
+++ b/src/common/log_manager.cpp
@@ -21,7 +21,7 @@ void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char*
21 va_end(args); 21 va_end(args);
22} 22}
23 23
24LogManager *LogManager::m_logManager = NULL; 24LogManager *LogManager::m_logManager = nullptr;
25 25
26LogManager::LogManager() 26LogManager::LogManager()
27{ 27{
@@ -68,7 +68,6 @@ LogManager::LogManager()
68 m_Log[LogTypes::RENDER] = new LogContainer("RENDER", "RENDER"); 68 m_Log[LogTypes::RENDER] = new LogContainer("RENDER", "RENDER");
69 m_Log[LogTypes::GPU] = new LogContainer("GPU", "GPU"); 69 m_Log[LogTypes::GPU] = new LogContainer("GPU", "GPU");
70 m_Log[LogTypes::SVC] = new LogContainer("SVC", "Supervisor Call HLE"); 70 m_Log[LogTypes::SVC] = new LogContainer("SVC", "Supervisor Call HLE");
71 m_Log[LogTypes::NDMA] = new LogContainer("NDMA", "NDMA");
72 m_Log[LogTypes::HLE] = new LogContainer("HLE", "High Level Emulation"); 71 m_Log[LogTypes::HLE] = new LogContainer("HLE", "High Level Emulation");
73 m_Log[LogTypes::HW] = new LogContainer("HW", "Hardware"); 72 m_Log[LogTypes::HW] = new LogContainer("HW", "Hardware");
74 m_Log[LogTypes::ACTIONREPLAY] = new LogContainer("ActionReplay", "ActionReplay"); 73 m_Log[LogTypes::ACTIONREPLAY] = new LogContainer("ActionReplay", "ActionReplay");
@@ -141,7 +140,7 @@ void LogManager::Init()
141void LogManager::Shutdown() 140void LogManager::Shutdown()
142{ 141{
143 delete m_logManager; 142 delete m_logManager;
144 m_logManager = NULL; 143 m_logManager = nullptr;
145} 144}
146 145
147LogContainer::LogContainer(const char* shortName, const char* fullName, bool enable) 146LogContainer::LogContainer(const char* shortName, const char* fullName, bool enable)