diff options
author | RSDuck <RSDuck@users.noreply.github.com> | 2024-03-12 09:23:20 +0100 |
---|---|---|
committer | RSDuck <RSDuck@users.noreply.github.com> | 2024-03-12 09:23:20 +0100 |
commit | ea1755bed0378a2f3783e78c5e63c266583218ce (patch) | |
tree | cb8ca3d71924812f566a4cc923a28bb6d8ecf7a6 /src | |
parent | 5fdd285c9a7f47601ff674df9d52abfd15355978 (diff) |
call Start again NDS object after Reset
fixes issue where game doesn't properly start after changing settings
Diffstat (limited to 'src')
-rw-r--r-- | src/frontend/qt_sdl/ROMManager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frontend/qt_sdl/ROMManager.cpp b/src/frontend/qt_sdl/ROMManager.cpp index e3ceebb..de1d864 100644 --- a/src/frontend/qt_sdl/ROMManager.cpp +++ b/src/frontend/qt_sdl/ROMManager.cpp @@ -916,6 +916,8 @@ void Reset(EmuThread* thread) thread->NDS->SetupDirectBoot(BaseROMName); } } + + thread->NDS->Start(); } |