diff options
| author | 2016-12-17 01:20:47 -0500 | |
|---|---|---|
| committer | 2016-12-21 23:48:14 -0500 | |
| commit | 5ac5cbeab7387b2eabd4618291e223fd7189bb8b (patch) | |
| tree | e035f870b86f930876a5ced2c1e2be9f6a087a91 /src/citra/citra.cpp | |
| parent | core: Remove HLE module, consolidate code & various cleanups. (diff) | |
| download | yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar.gz yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar.xz yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.zip | |
Address clang-format issues.
Diffstat (limited to 'src/citra/citra.cpp')
| -rw-r--r-- | src/citra/citra.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp index febfc5dc8..99c096ac7 100644 --- a/src/citra/citra.cpp +++ b/src/citra/citra.cpp | |||
| @@ -126,13 +126,13 @@ int main(int argc, char** argv) { | |||
| 126 | Settings::values.use_gdbstub = use_gdbstub; | 126 | Settings::values.use_gdbstub = use_gdbstub; |
| 127 | Settings::Apply(); | 127 | Settings::Apply(); |
| 128 | 128 | ||
| 129 | std::unique_ptr<EmuWindow_SDL2> emu_window{ std::make_unique<EmuWindow_SDL2>() }; | 129 | std::unique_ptr<EmuWindow_SDL2> emu_window{std::make_unique<EmuWindow_SDL2>()}; |
| 130 | 130 | ||
| 131 | Core::System& system{ Core::System::GetInstance() }; | 131 | Core::System& system{Core::System::GetInstance()}; |
| 132 | 132 | ||
| 133 | SCOPE_EXIT({ system.Shutdown(); }); | 133 | SCOPE_EXIT({ system.Shutdown(); }); |
| 134 | 134 | ||
| 135 | const Core::System::ResultStatus load_result{ system.Load(emu_window.get(), filepath) }; | 135 | const Core::System::ResultStatus load_result{system.Load(emu_window.get(), filepath)}; |
| 136 | 136 | ||
| 137 | switch (load_result) { | 137 | switch (load_result) { |
| 138 | case Core::System::ResultStatus::ErrorGetLoader: | 138 | case Core::System::ResultStatus::ErrorGetLoader: |