mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-20 18:32:39 -06:00
Migrate SConfig::m_is_mios to System.
This commit is contained in:
@ -60,13 +60,13 @@ bool BootCore(std::unique_ptr<BootParameters> boot, const WindowSystemInfo& wsi)
|
||||
if (!boot)
|
||||
return false;
|
||||
|
||||
auto& system = Core::System::GetInstance();
|
||||
SConfig& StartUp = SConfig::GetInstance();
|
||||
|
||||
if (!StartUp.SetPathsAndGameMetadata(*boot))
|
||||
if (!StartUp.SetPathsAndGameMetadata(system, *boot))
|
||||
return false;
|
||||
|
||||
// Movie settings
|
||||
auto& system = Core::System::GetInstance();
|
||||
auto& movie = system.GetMovie();
|
||||
if (movie.IsPlayingInput() && movie.IsConfigSaved())
|
||||
{
|
||||
|
Reference in New Issue
Block a user