mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Fix a slight leak in LogManager.
m_debuggerLog wasn't ever deleted in the destructor.
This commit is contained in:
@ -116,6 +116,7 @@ LogManager::~LogManager()
|
||||
|
||||
delete m_fileLog;
|
||||
delete m_consoleLog;
|
||||
delete m_debuggerLog;
|
||||
}
|
||||
|
||||
void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
|
||||
|
Reference in New Issue
Block a user