mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Zelda uCode: Fixed an extremely stupid bug (forgot an else).
Should definitely fix SMS. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3825 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
8cdae6fc1d
commit
4e95ed4564
@ -254,7 +254,7 @@ void CUCode_Zelda::HandleMail_SMSVersion(u32 _uMail)
|
||||
m_bSyncInProgress = true;
|
||||
m_NumSyncMail = 0;
|
||||
}
|
||||
if ((_uMail >> 16) == 0)
|
||||
else if ((_uMail >> 16) == 0)
|
||||
{
|
||||
m_bListInProgress = true;
|
||||
m_numSteps = _uMail;
|
||||
|
Loading…
Reference in New Issue
Block a user