summaryrefslogtreecommitdiffstats
path: root/src/citra/citra.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-12-17 07:20:47 +0100
committerbunnei <bunneidev@gmail.com>2016-12-22 05:48:14 +0100
commit5ac5cbeab7387b2eabd4618291e223fd7189bb8b (patch)
treee035f870b86f930876a5ced2c1e2be9f6a087a91 /src/citra/citra.cpp
parentcore: Remove HLE module, consolidate code & various cleanups. (diff)
downloadyuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar
yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar.gz
yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar.bz2
yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar.lz
yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar.xz
yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.tar.zst
yuzu-5ac5cbeab7387b2eabd4618291e223fd7189bb8b.zip
Diffstat (limited to '')
-rw-r--r--src/citra/citra.cpp6
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) {
Settings::values.use_gdbstub = use_gdbstub;
Settings::Apply();
- std::unique_ptr<EmuWindow_SDL2> emu_window{ std::make_unique<EmuWindow_SDL2>() };
+ std::unique_ptr<EmuWindow_SDL2> emu_window{std::make_unique<EmuWindow_SDL2>()};
- Core::System& system{ Core::System::GetInstance() };
+ Core::System& system{Core::System::GetInstance()};
SCOPE_EXIT({ system.Shutdown(); });
- const Core::System::ResultStatus load_result{ system.Load(emu_window.get(), filepath) };
+ const Core::System::ResultStatus load_result{system.Load(emu_window.get(), filepath)};
switch (load_result) {
case Core::System::ResultStatus::ErrorGetLoader: