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:
luigi2us 2009-07-17 23:36:34 +00:00
parent 8cdae6fc1d
commit 4e95ed4564

View file

@ -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;