Skip to content

Commit

Permalink
Added missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
Gericom committed Aug 12, 2020
1 parent c614adf commit 6e4ce45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arm9/source/gamePatches.vram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ void gptc_patchRom()
//Dragon Ball Z - Buu's Fury (USA)
//Fix "game will not run on this hardware" error
if (*(u16*)(MAIN_MEMORY_ADDRESS_ROM_DATA + 0x8B66) == 0x7032)
*(u16*)(MAIN_MEMORY_ADDRESS_ROM_DATA + 0x8B66) = 0
*(u16*)(MAIN_MEMORY_ADDRESS_ROM_DATA + 0x8B66) = 0;

if (*(u16*)(MAIN_MEMORY_ADDRESS_ROM_DATA + 0x8B6A) == 0x7072)
*(u16*)(MAIN_MEMORY_ADDRESS_ROM_DATA + 0x8B6A) = 0;
Expand Down

0 comments on commit 6e4ce45

Please sign in to comment.