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:
Stenzek 2019-11-30 15:41:36 +10:00
parent ba8b5bea11
commit 52e2e32193
1 changed files with 3 additions and 1 deletions

View File

@ -290,7 +290,9 @@ void Stop() // - Hammertime!
g_video_backend->Video_ExitLoop();
}
Wiimote::ResetAllWiimotes();
if (_CoreParameter.bWii)
Wiimote::ResetAllWiimotes();
ResetRumble();
#ifdef USE_MEMORYWATCHER