diff options
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
| -rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index ba6e89249..c2efe1ee6 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -25,7 +25,6 @@ | |||
| 25 | #include "core/crypto/key_manager.h" | 25 | #include "core/crypto/key_manager.h" |
| 26 | #include "core/file_sys/registered_cache.h" | 26 | #include "core/file_sys/registered_cache.h" |
| 27 | #include "core/file_sys/vfs_real.h" | 27 | #include "core/file_sys/vfs_real.h" |
| 28 | #include "core/gdbstub/gdbstub.h" | ||
| 29 | #include "core/hle/kernel/process.h" | 28 | #include "core/hle/kernel/process.h" |
| 30 | #include "core/hle/service/filesystem/filesystem.h" | 29 | #include "core/hle/service/filesystem/filesystem.h" |
| 31 | #include "core/loader/loader.h" | 30 | #include "core/loader/loader.h" |
| @@ -174,13 +173,13 @@ int main(int argc, char** argv) { | |||
| 174 | return -1; | 173 | return -1; |
| 175 | } | 174 | } |
| 176 | 175 | ||
| 176 | auto& system{Core::System::GetInstance()}; | ||
| 177 | InputCommon::InputSubsystem input_subsystem; | ||
| 178 | |||
| 177 | // Apply the command line arguments | 179 | // Apply the command line arguments |
| 178 | Settings::values.gdbstub_port = gdb_port; | 180 | Settings::values.gdbstub_port = gdb_port; |
| 179 | Settings::values.use_gdbstub = use_gdbstub; | 181 | Settings::values.use_gdbstub = use_gdbstub; |
| 180 | Settings::Apply(); | 182 | Settings::Apply(system); |
| 181 | |||
| 182 | Core::System& system{Core::System::GetInstance()}; | ||
| 183 | InputCommon::InputSubsystem input_subsystem; | ||
| 184 | 183 | ||
| 185 | std::unique_ptr<EmuWindow_SDL2> emu_window; | 184 | std::unique_ptr<EmuWindow_SDL2> emu_window; |
| 186 | switch (Settings::values.renderer_backend.GetValue()) { | 185 | switch (Settings::values.renderer_backend.GetValue()) { |