mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Core: Only reset wiimotes in Wii mode
This was causing the FifoCI runners to crash, as the Wiimotes were not initialized in the first place.
This commit is contained in:
parent
ba8b5bea11
commit
52e2e32193
1 changed files with 3 additions and 1 deletions
|
@ -290,7 +290,9 @@ void Stop() // - Hammertime!
|
|||
g_video_backend->Video_ExitLoop();
|
||||
}
|
||||
|
||||
Wiimote::ResetAllWiimotes();
|
||||
if (_CoreParameter.bWii)
|
||||
Wiimote::ResetAllWiimotes();
|
||||
|
||||
ResetRumble();
|
||||
|
||||
#ifdef USE_MEMORYWATCHER
|
||||
|
|
Loading…
Add table
Reference in a new issue