mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-02-16 17:35:39 +00:00
Magical Truck Adventure expects 0x03 to be returned from MIDI control port (thanks, Ville). Game now boots but crashes because VROM texture uploads clobber memory for some reason.
This commit is contained in:
parent
198a469ff7
commit
7ade3a6abb
|
@ -872,8 +872,8 @@ UINT8 CModel3::Read8(UINT32 addr)
|
|||
|
||||
// Sound Board
|
||||
case 0x08:
|
||||
if ((addr&0xF) == 4) // MIDI control port
|
||||
return 0xFF; // one of these bits (0x80?) indicates "ready"
|
||||
if ((addr & 0xF) == 4) // MIDI control port
|
||||
return 0x03; // magtruck country check
|
||||
break;
|
||||
|
||||
// System registers
|
||||
|
|
Loading…
Reference in a new issue