Clean Warnings (?)

This commit is contained in:
N00byKing 2018-03-19 17:07:08 +01:00
parent b2d7c92cae
commit ef875d6a35
15 changed files with 20 additions and 20 deletions

View file

@ -106,7 +106,7 @@ System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& file
const Loader::ResultStatus load_result{app_loader->Load(current_process)};
if (Loader::ResultStatus::Success != load_result) {
LOG_CRITICAL(Core, "Failed to load ROM (Error %i)!", load_result);
LOG_CRITICAL(Core, "Failed to load ROM (Error %i)!", static_cast<int>(load_result));
System::Shutdown();
switch (load_result) {