GPU: Set PAL mode on soft reset if region is PAL

This commit is contained in:
Connor McLaughlin
2019-11-16 20:15:33 +10:00
parent 49ab9467df
commit 613e4f4a2a
2 changed files with 5 additions and 1 deletions

View File

@ -50,6 +50,8 @@ public:
SPU* GetSPU() const { return m_spu.get(); }
MDEC* GetMDEC() const { return m_mdec.get(); }
ConsoleRegion GetRegion() const { return m_region; }
bool IsPALRegion() const { return m_region == ConsoleRegion::PAL; }
u32 GetFrameNumber() const { return m_frame_number; }
u32 GetInternalFrameNumber() const { return m_internal_frame_number; }
u32 GetGlobalTickCounter() const { return m_global_tick_counter; }