mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
Migrate SConfig::m_is_mios to System.
This commit is contained in:
@ -135,6 +135,9 @@ public:
|
||||
bool IsDualCoreMode() const { return m_separate_cpu_and_gpu_threads; }
|
||||
bool IsMMUMode() const { return m_mmu_enabled; }
|
||||
bool IsPauseOnPanicMode() const { return m_pause_on_panic_enabled; }
|
||||
bool IsMIOS() const { return m_is_mios; }
|
||||
|
||||
void SetIsMIOS(bool is_mios) { m_is_mios = is_mios; }
|
||||
|
||||
SoundStream* GetSoundStream() const;
|
||||
void SetSoundStream(std::unique_ptr<SoundStream> sound_stream);
|
||||
@ -188,5 +191,6 @@ private:
|
||||
bool m_separate_cpu_and_gpu_threads = false;
|
||||
bool m_mmu_enabled = false;
|
||||
bool m_pause_on_panic_enabled = false;
|
||||
bool m_is_mios = false;
|
||||
};
|
||||
} // namespace Core
|
||||
|
Reference in New Issue
Block a user