diff options
Diffstat (limited to 'engine')
-rwxr-xr-x | engine/events/halloffame.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/events/halloffame.asm b/engine/events/halloffame.asm index 5edb1502d..cf3831066 100755 --- a/engine/events/halloffame.asm +++ b/engine/events/halloffame.asm @@ -18,7 +18,7 @@ HallOfFame:: ; 0x8640e ld hl, wHallOfFameCount ld a, [hl] - cp HOF_MASTER_COUNT - 1 ; should be HOF_MASTER_COUNT + cp HOF_MASTER_COUNT jr nc, .ok inc [hl] .ok @@ -376,7 +376,7 @@ _HallOfFamePC: ; 86650 pop hl call DisplayHOFMon ld a, [wHallOfFameTempWinCount] - cp HOF_MASTER_COUNT + cp HOF_MASTER_COUNT + 1 ; should be HOF_MASTER_COUNT jr c, .print_num_hof ld de, .HOFMaster hlcoord 1, 2 |