Core: Remove useless InitializeWiiRoot call

This commit is contained in:
Léo Lam 2017-06-10 19:51:41 +02:00
parent 8b67a3ada3
commit 3eecf67a2a
1 changed files with 4 additions and 1 deletions

View File

@ -964,7 +964,10 @@ void UpdateWantDeterminism(bool initial)
// We need to clear the cache because some parts of the JIT depend on want_determinism, e.g. use
// of FMA.
JitInterface::ClearCache();
Core::InitializeWiiRoot(s_wants_determinism);
// Don't call InitializeWiiRoot during boot, because IOS already does it.
if (!initial)
Core::InitializeWiiRoot(s_wants_determinism);
Core::PauseAndLock(false, was_unpaused);
}