More Warning cleanups

This commit is contained in:
N00byKing 2018-03-19 17:27:04 +01:00
parent ef875d6a35
commit 0e72d0d826
3 changed files with 3 additions and 3 deletions

View file

@ -99,7 +99,7 @@ System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& file
ResultStatus init_result{Init(emu_window, system_mode.first.get())};
if (init_result != ResultStatus::Success) {
LOG_CRITICAL(Core, "Failed to initialize system (Error %i)!", init_result);
LOG_CRITICAL(Core, "Failed to initialize system (Error %i)!", static_cast<int>(init_result));
System::Shutdown();
return init_result;
}