diff options
Diffstat (limited to 'engine')
-rw-r--r-- | engine/high_scores_screen.asm | 2 | ||||
-rw-r--r-- | engine/pinball_game.asm | 2 | ||||
-rw-r--r-- | engine/pokedex.asm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engine/high_scores_screen.asm b/engine/high_scores_screen.asm index c08436c..74c11d4 100644 --- a/engine/high_scores_screen.asm +++ b/engine/high_scores_screen.asm @@ -120,7 +120,7 @@ Func_cb14: ; 0xcb14 ld hl, rIE
set 1, [hl]
ld a, $3
- ld [hHBlankRoutine], a
+ ld [hStatIntrRoutine], a
ld a, [hGameBoyColorFlag]
and a
jr z, .asm_cb51
diff --git a/engine/pinball_game.asm b/engine/pinball_game.asm index 34a7d4c..f094e82 100644 --- a/engine/pinball_game.asm +++ b/engine/pinball_game.asm @@ -45,7 +45,7 @@ GameScreenFunction_StartBall: ; 0xd87f ld hl, rIE
set 1, [hl]
ld a, $1
- ld [hHBlankRoutine], a
+ ld [hStatIntrRoutine], a
callba InitBallForStage
callba LoadStageCollisionAttributes
callba LoadStageData
diff --git a/engine/pokedex.asm b/engine/pokedex.asm index d13f13e..107ee19 100644 --- a/engine/pokedex.asm +++ b/engine/pokedex.asm @@ -35,7 +35,7 @@ LoadPokedexScreen: ; 0x2800e ld hl, rIE
set 1, [hl]
ld a, $2
- ld [hHBlankRoutine], a
+ ld [hStatIntrRoutine], a
ld hl, PointerTable_280a2
ld a, [hGameBoyColorFlag]
call LoadVideoData
|