Skip to content
Permalink
Browse files
Merge pull request #6948 from leoetlino/testing
Core: Only init Wii FS contents in Wii mode
  • Loading branch information
JosJuice committed May 23, 2018
2 parents da03ff2 + 4fd1674 commit 052ac16
Showing 1 changed file with 4 additions and 1 deletion.
@@ -521,7 +521,10 @@ static void EmuThread(std::unique_ptr<BootParameters> boot)
// This is done here after Boot and not in HW to ensure that we operate
// with the correct title context since save copying requires title directories to exist.
Common::ScopeGuard wiifs_guard{Core::CleanUpWiiFileSystemContents};
Core::InitializeWiiFileSystemContents();
if (SConfig::GetInstance().bWii)
Core::InitializeWiiFileSystemContents();
else
wiifs_guard.Dismiss();

// This adds the SyncGPU handler to CoreTiming, so now CoreTiming::Advance might block.
Fifo::Prepare();

0 comments on commit 052ac16

Please sign in to comment.