diff options
| author | 2018-03-19 17:53:35 +0100 | |
|---|---|---|
| committer | 2018-03-19 17:53:35 +0100 | |
| commit | 1d8b6ad13b4808034298b856c24a78d4d87acac2 (patch) | |
| tree | 45ebd96f672851f816aca4b09b599df5ee8f8c5c /src/core/core.cpp | |
| parent | oops (diff) | |
| download | yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar.gz yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar.xz yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.zip | |
Clang Fixes
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 5a80d03dc..d55621de8 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -99,7 +99,8 @@ 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)!", static_cast<int>(init_result)); | 102 | LOG_CRITICAL(Core, "Failed to initialize system (Error %i)!", |
| 103 | static_cast<int>(init_result)); | ||
| 103 | System::Shutdown(); | 104 | System::Shutdown(); |
| 104 | return init_result; | 105 | return init_result; |
| 105 | } | 106 | } |