diff options
author | bunnei <bunneidev@gmail.com> | 2014-09-19 04:27:06 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-09-19 04:27:06 +0200 |
commit | a9630a9d2b432bea7bdfef4aa462035b98b34517 (patch) | |
tree | 258010943e989fc61a2a439ff15ead7ed3d11a6f /src/common/log_manager.cpp | |
parent | Merge pull request #107 from lioncash/sprintf (diff) | |
parent | Kernel: Implement the Close command for Archive, File and Directory. (diff) | |
download | yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.gz yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.bz2 yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.lz yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.xz yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.zst yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.zip |
Diffstat (limited to 'src/common/log_manager.cpp')
-rw-r--r-- | src/common/log_manager.cpp | 2 |
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() m_Log[LogTypes::MEMCARD_MANAGER] = new LogContainer("MemCard Manager", "MemCard Manager"); m_Log[LogTypes::NETPLAY] = new LogContainer("NETPLAY", "Netplay"); - m_fileLog = new FileLogListener(File::GetUserPath(F_MAINLOG_IDX).c_str()); + m_fileLog = new FileLogListener(FileUtil::GetUserPath(F_MAINLOG_IDX).c_str()); m_consoleLog = new ConsoleListener(); m_debuggerLog = new DebuggerLogListener(); |