mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-19 15:31:53 +00:00
Various changes: Fixed linux build, added some zelda ucode RE, added HLE mail logging features
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3704 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
13290204b4
commit
92e63e3ac4
13 changed files with 68 additions and 46 deletions
|
@ -30,7 +30,7 @@ CMailHandler::~CMailHandler()
|
|||
void CMailHandler::PushMail(u32 _Mail)
|
||||
{
|
||||
m_Mails.push(_Mail);
|
||||
|
||||
DEBUG_LOG(DSP_MAIL, "DSP writes 0x%08x", _Mail);
|
||||
Update();
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ u16 CMailHandler::ReadDSPMailboxLow()
|
|||
if (!m_Mails.empty())
|
||||
{
|
||||
u16 result = m_Mails.front() & 0xFFFF;
|
||||
m_Mails.pop();
|
||||
m_Mails.pop();
|
||||
|
||||
Update();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue