mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
DSP-HLE: cleanup PushMail argument names
This commit is contained in:
parent
43c09c63d8
commit
2fad33cafe
@ -22,7 +22,7 @@ CMailHandler::~CMailHandler()
|
|||||||
Clear();
|
Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMailHandler::PushMail(u32 _Mail, bool interrupt, int cycles_into_future)
|
void CMailHandler::PushMail(u32 mail, bool interrupt, int cycles_into_future)
|
||||||
{
|
{
|
||||||
if (interrupt)
|
if (interrupt)
|
||||||
{
|
{
|
||||||
@ -35,8 +35,8 @@ void CMailHandler::PushMail(u32 _Mail, bool interrupt, int cycles_into_future)
|
|||||||
m_Mails.front().second = true;
|
m_Mails.front().second = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m_Mails.emplace(_Mail, false);
|
m_Mails.emplace(mail, false);
|
||||||
DEBUG_LOG(DSP_MAIL, "DSP writes 0x%08x", _Mail);
|
DEBUG_LOG(DSP_MAIL, "DSP writes 0x%08x", mail);
|
||||||
}
|
}
|
||||||
|
|
||||||
u16 CMailHandler::ReadDSPMailboxHigh()
|
u16 CMailHandler::ReadDSPMailboxHigh()
|
||||||
|
@ -22,7 +22,7 @@ public:
|
|||||||
~CMailHandler();
|
~CMailHandler();
|
||||||
|
|
||||||
// TODO: figure out correct timing for interrupts rather than defaulting to "immediately."
|
// TODO: figure out correct timing for interrupts rather than defaulting to "immediately."
|
||||||
void PushMail(u32 _Mail, bool interrupt = false, int cycles_into_future = 0);
|
void PushMail(u32 mail, bool interrupt = false, int cycles_into_future = 0);
|
||||||
void Clear();
|
void Clear();
|
||||||
void Halt(bool _Halt);
|
void Halt(bool _Halt);
|
||||||
void DoState(PointerWrap& p);
|
void DoState(PointerWrap& p);
|
||||||
|
Loading…
Reference in New Issue
Block a user