mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
This should fix "unknown command 00" error message with Luigi's mansion.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3778 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
e4a57202d2
commit
ba5f08c69d
@ -133,6 +133,7 @@ void CUCode_Zelda::HandleMail_LightVersion(u32 _uMail)
|
||||
{
|
||||
switch ((_uMail >> 24) & 0x7F)
|
||||
{
|
||||
case 0x00: m_numSteps = 1; break; // dummy
|
||||
case 0x01: m_numSteps = 5; break; // DsetupTable
|
||||
case 0x02: m_numSteps = 3; break; // DsyncFrame
|
||||
|
||||
@ -303,6 +304,9 @@ void CUCode_Zelda::ExecuteList()
|
||||
|
||||
switch (Command)
|
||||
{
|
||||
// dummy
|
||||
case 0x00: break;
|
||||
|
||||
// DsetupTable ... zelda ww jumps to 0x0095
|
||||
case 0x01:
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user