diff --git a/Source/Core/Core/HW/DSPHLE/MailHandler.cpp b/Source/Core/Core/HW/DSPHLE/MailHandler.cpp index be56af8e86..da1ccfd29b 100644 --- a/Source/Core/Core/HW/DSPHLE/MailHandler.cpp +++ b/Source/Core/Core/HW/DSPHLE/MailHandler.cpp @@ -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() diff --git a/Source/Core/Core/HW/DSPHLE/MailHandler.h b/Source/Core/Core/HW/DSPHLE/MailHandler.h index ba2191276c..a3503cefb7 100644 --- a/Source/Core/Core/HW/DSPHLE/MailHandler.h +++ b/Source/Core/Core/HW/DSPHLE/MailHandler.h @@ -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);