Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- DMA card read support for the M3DS platform - by @lifehackerhansol
- AP patches for NRL Mascot Mania and AFL Mascot Manor - by @taxicat1
- Houkago Shounen race condition patch - by @taxicat1
- Race condition patch for Ultimate Mortal Kombat (USA) and (Europe) - by @taxicat1

### Fixed
- DMA card read offsets for Pokemon Ranger (EU) - by @taxicat1
Expand Down
32 changes: 32 additions & 0 deletions data/patchlist.json
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,38 @@
]
},

// YUTE - Ultimate Mortal Kombat (USA)
// YUTP - Ultimate Mortal Kombat (Europe)
//
// These games have an issue where a flag can become out of sync with its associated object due to a vblank interrupt occurring
// while running the object constructor. When this happens, the vblank interrupt handler has a failsafe to create a new object.
// However, the object constructor opens sound_data.sdat, which will softlock the game because NitroFS functions cannot
// be called when interrupts are disabled (i.e. from within the vblank interrupt handler).
// To fix this, the flag that causes the issue in the first place is ignored and the pointer itself is checked instead.
// This changes only a single load offset.
{
"gameCode": "YUTE", // Ultimate Mortal Kombat (USA)
"gameVersion": 0,
"patches": [
{
"type": "replace",
"address": "0203295C",
"data": "15",
}
]
},
{
"gameCode": "YUTP", // Ultimate Mortal Kombat (Europe)
"gameVersion": 0,
"patches": [
{
"type": "replace",
"address": "02032C88",
"data": "0F",
}
]
},

// MetaFortress games below here.
//
// MetaFortress is an automated system that replaces the typical way DS games are built. It automatically injects
Expand Down
Loading