summaryrefslogtreecommitdiff
path: root/src/common/log_manager.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2014-09-12 00:17:15 +0200
committerGravatar Emmanuel Gil Peyrot2014-09-17 14:35:45 +0000
commit6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc (patch)
treedd5cdcd8b1f9822a019362b44a44ec9505adff8a /src/common/log_manager.cpp
parentCommon: Return the number of items read/written in IOFile’s methods instead... (diff)
downloadyuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.tar.gz
yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.tar.xz
yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.zip
Common: Rename the File namespace to FileUtil, to match the filename and prevent collisions.
Diffstat (limited to 'src/common/log_manager.cpp')
-rw-r--r--src/common/log_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log_manager.cpp b/src/common/log_manager.cpp
index 43346f279..28b72fa20 100644
--- a/src/common/log_manager.cpp
+++ b/src/common/log_manager.cpp
@@ -75,7 +75,7 @@ LogManager::LogManager()
75 m_Log[LogTypes::MEMCARD_MANAGER] = new LogContainer("MemCard Manager", "MemCard Manager"); 75 m_Log[LogTypes::MEMCARD_MANAGER] = new LogContainer("MemCard Manager", "MemCard Manager");
76 m_Log[LogTypes::NETPLAY] = new LogContainer("NETPLAY", "Netplay"); 76 m_Log[LogTypes::NETPLAY] = new LogContainer("NETPLAY", "Netplay");
77 77
78 m_fileLog = new FileLogListener(File::GetUserPath(F_MAINLOG_IDX).c_str()); 78 m_fileLog = new FileLogListener(FileUtil::GetUserPath(F_MAINLOG_IDX).c_str());
79 m_consoleLog = new ConsoleListener(); 79 m_consoleLog = new ConsoleListener();
80 m_debuggerLog = new DebuggerLogListener(); 80 m_debuggerLog = new DebuggerLogListener();
81 81