SPU: Fix a few cases where SPU interrupts weren't firing

This commit is contained in:
Connor McLaughlin
2021-01-10 01:38:39 +10:00
parent df98a0b04e
commit 15652b4c1f
5 changed files with 100 additions and 57 deletions

View File

@ -17,8 +17,8 @@ public:
TimingEvent(std::string name, TickCount period, TickCount interval, TimingEventCallback callback);
~TimingEvent();
const std::string& GetName() const { return m_name; }
bool IsActive() const { return m_active; }
ALWAYS_INLINE const std::string& GetName() const { return m_name; }
ALWAYS_INLINE bool IsActive() const { return m_active; }
// Returns the number of ticks between each event.
ALWAYS_INLINE TickCount GetPeriod() const { return m_period; }