diff options
| author | Matthew Parlane <parlane@gmail.com> | 2017-02-06 17:38:46 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-06 17:38:46 +1300 |
| commit | d022913fb36854cc47bf4f8852881e1344c5afc6 (patch) | |
| tree | 501110e36b1d34337b5cba33dd1bbc5db1030100 /Source/Core/DiscIO/FileMonitor.cpp | |
| parent | 3cc4c02c5b30d81e17bad2b5e996d3c5b029d951 (diff) | |
| parent | e07383a783848b961cee6e46276340ac4494598a (diff) | |
Merge pull request #4828 from lioncash/state
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 |
