summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/FileMonitor.cpp
diff options
context:
space:
mode:
authorGlenn Rice <glennricster@gmail.com>2010-12-14 17:52:01 +0000
committerGlenn Rice <glennricster@gmail.com>2010-12-14 17:52:01 +0000
commit35fef1f17300a26778eaa5588816239189ec453c (patch)
treeb6784fd1d92217e14a254430351e91b98031b211 /Source/Core/DiscIO/Src/FileMonitor.cpp
parent7c0e08b0e7dd6caf35db7368015903f9048af3dc (diff)
Revert back to LogTypes. Fixes issue 3668.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6580 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/FileMonitor.cpp')
-rw-r--r--Source/Core/DiscIO/Src/FileMonitor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Src/FileMonitor.cpp b/Source/Core/DiscIO/Src/FileMonitor.cpp
index dc51d4d3a6..1b3ccb0be8 100644
--- a/Source/Core/DiscIO/Src/FileMonitor.cpp
+++ b/Source/Core/DiscIO/Src/FileMonitor.cpp
@@ -98,7 +98,7 @@ void ReadGC(std::string FileName)
void CheckFile(std::string File, u64 Size)
{
// Don't do anything if the log is unselected
- if (!LogManager::GetInstance()->isEnable(FILEMON)) return;
+ if (!LogManager::GetInstance()->isEnable(LogTypes::FILEMON)) return;
// Do nothing if we found the same file again
if (CurrentFile == File) return;
@@ -124,7 +124,7 @@ void FindFilename(u64 offset)
// Don't do anything if a game is not running
if (Core::GetState() != Core::CORE_RUN) return;
// Or if the log is unselected
- if (!LogManager::GetInstance()->isEnable(FILEMON)) return;
+ if (!LogManager::GetInstance()->isEnable(LogTypes::FILEMON)) return;
if (!FileAccess) return;
if (!pFileSystem || ISOFile != SConfig::GetInstance().m_LastFilename)