diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-02-05 07:39:58 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-02-05 08:32:23 -0500 |
| commit | e07383a783848b961cee6e46276340ac4494598a (patch) | |
| tree | 6a8568111d12717f86b97cc3c37c31acfacd6b7b /Source/Core/DiscIO/FileMonitor.cpp | |
| parent | c4d470cbf27b6865e76d5d57248f8823eadbcffe (diff) | |
Core: Convert State enum into an enum class
Diffstat (limited to 'Source/Core/DiscIO/FileMonitor.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileMonitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/FileMonitor.cpp b/Source/Core/DiscIO/FileMonitor.cpp index 3d59b9e9b2..adc29de250 100644 --- a/Source/Core/DiscIO/FileMonitor.cpp +++ b/Source/Core/DiscIO/FileMonitor.cpp @@ -110,7 +110,7 @@ void CheckFile(const std::string& file, u64 size) void FindFilename(u64 offset) { // Don't do anything if a game is not running - if (Core::GetState() != Core::CORE_RUN) + if (Core::GetState() != Core::State::Running) return; // Or if the log is unselected |
