diff options
| author | 2018-03-19 17:07:08 +0100 | |
|---|---|---|
| committer | 2018-03-19 17:07:08 +0100 | |
| commit | ef875d6a356fef22d52ec2cdf2a326297740ff66 (patch) | |
| tree | 8565762859d7be0329fb5991819b8381c690527d /src/core/core.cpp | |
| parent | Merge pull request #251 from Subv/tic_tsc (diff) | |
| download | yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip | |
Clean Warnings (?)
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 183c5109c..eeba4e2da 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -106,7 +106,7 @@ System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& file | |||
| 106 | 106 | ||
| 107 | const Loader::ResultStatus load_result{app_loader->Load(current_process)}; | 107 | const Loader::ResultStatus load_result{app_loader->Load(current_process)}; |
| 108 | if (Loader::ResultStatus::Success != load_result) { | 108 | if (Loader::ResultStatus::Success != load_result) { |
| 109 | LOG_CRITICAL(Core, "Failed to load ROM (Error %i)!", load_result); | 109 | LOG_CRITICAL(Core, "Failed to load ROM (Error %i)!", static_cast<int>(load_result)); |
| 110 | System::Shutdown(); | 110 | System::Shutdown(); |
| 111 | 111 | ||
| 112 | switch (load_result) { | 112 | switch (load_result) { |