mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Merge pull request #11586 from JosJuice/unknown-opcode-msg
VideoCommon: Reword the unknown opcode error message
This commit is contained in:
@ -417,6 +417,11 @@ bool CoreTimingManager::GetVISkip() const
|
||||
return m_throttle_disable_vi_int && g_ActiveConfig.bVISkip && !Core::WantsDeterminism();
|
||||
}
|
||||
|
||||
bool CoreTimingManager::UseSyncOnSkipIdle() const
|
||||
{
|
||||
return m_config_sync_on_skip_idle;
|
||||
}
|
||||
|
||||
void CoreTimingManager::LogPendingEvents() const
|
||||
{
|
||||
auto clone = m_event_queue;
|
||||
|
@ -150,6 +150,8 @@ public:
|
||||
TimePoint GetCPUTimePoint(s64 cyclesLate) const; // Used by Dolphin Analytics
|
||||
bool GetVISkip() const; // Used By VideoInterface
|
||||
|
||||
bool UseSyncOnSkipIdle() const;
|
||||
|
||||
private:
|
||||
Globals m_globals;
|
||||
|
||||
|
Reference in New Issue
Block a user