diff options
| author | 2018-03-19 17:27:04 +0100 | |
|---|---|---|
| committer | 2018-03-19 17:27:04 +0100 | |
| commit | 0e72d0d82622deb503f05fd0b76790b8ab147404 (patch) | |
| tree | c525f52c003a5a0770e2049dc8c665a9970c3cb2 /src/core/core.cpp | |
| parent | Clean Warnings (?) (diff) | |
| download | yuzu-0e72d0d82622deb503f05fd0b76790b8ab147404.tar.gz yuzu-0e72d0d82622deb503f05fd0b76790b8ab147404.tar.xz yuzu-0e72d0d82622deb503f05fd0b76790b8ab147404.zip | |
More Warning cleanups
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 eeba4e2da..5a80d03dc 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -99,7 +99,7 @@ System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& file | |||
| 99 | 99 | ||
| 100 | ResultStatus init_result{Init(emu_window, system_mode.first.get())}; | 100 | ResultStatus init_result{Init(emu_window, system_mode.first.get())}; |
| 101 | if (init_result != ResultStatus::Success) { | 101 | if (init_result != ResultStatus::Success) { |
| 102 | LOG_CRITICAL(Core, "Failed to initialize system (Error %i)!", init_result); | 102 | LOG_CRITICAL(Core, "Failed to initialize system (Error %i)!", static_cast<int>(init_result)); |
| 103 | System::Shutdown(); | 103 | System::Shutdown(); |
| 104 | return init_result; | 104 | return init_result; |
| 105 | } | 105 | } |