Remove unnecessary WiiRoot inits/shutdowns

* IOS: WiiRoot shutdown was moved to HW.

* Movie: Don't call UpdateWantDeterminism() if we're not running yet,
  because this will automatically be done during the boot process.
  Not doing this will result in two NANDs being created.
This commit is contained in:
Léo Lam 2017-06-27 15:44:17 +02:00
commit ff83b93949
3 changed files with 6 additions and 2 deletions

View file

@ -625,7 +625,8 @@ bool BeginRecordingInput(int controllers)
s_currentByte = s_totalBytes = 0;
Core::UpdateWantDeterminism();
if (Core::IsRunning())
Core::UpdateWantDeterminism();
Core::PauseAndLock(false, was_unpaused);