DSP-HLE: cleanup PushMail argument names
This commit is contained in:
parent
43c09c63d8
commit
2fad33cafe
|
@ -22,7 +22,7 @@ CMailHandler::~CMailHandler()
|
|||
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)
|
||||
{
|
||||
|
@ -35,8 +35,8 @@ void CMailHandler::PushMail(u32 _Mail, bool interrupt, int cycles_into_future)
|
|||
m_Mails.front().second = true;
|
||||
}
|
||||
}
|
||||
m_Mails.emplace(_Mail, false);
|
||||
DEBUG_LOG(DSP_MAIL, "DSP writes 0x%08x", _Mail);
|
||||
m_Mails.emplace(mail, false);
|
||||
DEBUG_LOG(DSP_MAIL, "DSP writes 0x%08x", mail);
|
||||
}
|
||||
|
||||
u16 CMailHandler::ReadDSPMailboxHigh()
|
||||
|
|
|
@ -22,7 +22,7 @@ public:
|
|||
~CMailHandler();
|
||||
|
||||
// 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 Halt(bool _Halt);
|
||||
void DoState(PointerWrap& p);
|
||||
|
|
Loading…
Reference in New Issue