mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 14:39:01 +01:00
EXI_Channel: Move SetEXIINT implementation into the cpp file
This commit is contained in:
parent
edf8a79005
commit
387769b4e2
@ -253,6 +253,11 @@ void CEXIChannel::PauseAndLock(bool do_lock, bool resume_on_unlock)
|
|||||||
device->PauseAndLock(do_lock, resume_on_unlock);
|
device->PauseAndLock(do_lock, resume_on_unlock);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CEXIChannel::SetEXIINT(bool exiint)
|
||||||
|
{
|
||||||
|
m_status.EXIINT = !!exiint;
|
||||||
|
}
|
||||||
|
|
||||||
IEXIDevice* CEXIChannel::FindDevice(TEXIDevices device_type, int custom_index)
|
IEXIDevice* CEXIChannel::FindDevice(TEXIDevices device_type, int custom_index)
|
||||||
{
|
{
|
||||||
for (auto& sup : m_devices)
|
for (auto& sup : m_devices)
|
||||||
|
@ -42,7 +42,7 @@ public:
|
|||||||
void PauseAndLock(bool do_lock, bool resume_on_unlock);
|
void PauseAndLock(bool do_lock, bool resume_on_unlock);
|
||||||
|
|
||||||
// This should only be used to transition interrupts from SP1 to Channel 2
|
// This should only be used to transition interrupts from SP1 to Channel 2
|
||||||
void SetEXIINT(bool exiint) { m_status.EXIINT = !!exiint; }
|
void SetEXIINT(bool exiint);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum
|
enum
|
||||||
|
Loading…
x
Reference in New Issue
Block a user