diff options
| author | Marcus Huderle <huderlem@gmail.com> | 2018-04-23 09:51:58 -0700 |
|---|---|---|
| committer | Marcus Huderle <huderlem@gmail.com> | 2018-04-23 09:51:58 -0700 |
| commit | 0221964952fc4ac32def4ab0de31fb316c5bc078 (patch) | |
| tree | 25eb28d70d491c159c2794b1f2a65ccb3c9d7587 /engine | |
| parent | e9715547f64480ba2c7852c9c3c04e126c102678 (diff) | |
Rename HBlank interrupt to STAT interrupt, and various home labeling
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
|
