summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/pinball_game.asm2
-rw-r--r--engine/pinball_game/ball_loss/ball_loss.asm2
-rw-r--r--engine/pinball_game/ball_loss/ball_loss_diglett_bonus.asm2
-rw-r--r--engine/pinball_game/ball_loss/ball_loss_gengar_bonus.asm2
-rw-r--r--engine/pinball_game/ball_loss/ball_loss_meowth_bonus.asm2
-rw-r--r--engine/pinball_game/ball_loss/ball_loss_mewtwo_bonus.asm2
-rw-r--r--engine/pinball_game/ball_loss/ball_loss_seel_bonus.asm2
-rw-r--r--engine/pinball_game/catchem_mode.asm14
-rw-r--r--engine/pinball_game/catchem_mode/catchem_mode_blue_field.asm8
-rw-r--r--engine/pinball_game/catchem_mode/catchem_mode_red_field.asm8
-rwxr-xr-xengine/pinball_game/evolution_mode.asm6
-rw-r--r--engine/pinball_game/evolution_mode/evolution_mode_blue_field.asm10
-rw-r--r--engine/pinball_game/evolution_mode/evolution_mode_red_field.asm10
-rw-r--r--engine/pinball_game/extra_ball.asm4
-rwxr-xr-xengine/pinball_game/map_move.asm6
-rw-r--r--engine/pinball_game/object_collision/blue_stage_resolve_collision.asm8
-rw-r--r--engine/pinball_game/object_collision/diglett_bonus_resolve_collision.asm2
-rw-r--r--engine/pinball_game/object_collision/gengar_bonus_resolve_collision.asm2
-rw-r--r--engine/pinball_game/object_collision/meowth_bonus_resolve_collision.asm2
-rw-r--r--engine/pinball_game/object_collision/mewtwo_bonus_resolve_collision.asm2
-rw-r--r--engine/pinball_game/object_collision/red_stage_resolve_collision.asm8
-rw-r--r--engine/pinball_game/object_collision/seel_bonus_resolve_collision.asm2
-rw-r--r--engine/pinball_game/slot.asm4
-rw-r--r--text/scrolling_text.asm2
24 files changed, 56 insertions, 56 deletions
diff --git a/engine/pinball_game.asm b/engine/pinball_game.asm
index 466a01f..e85ed71 100644
--- a/engine/pinball_game.asm
+++ b/engine/pinball_game.asm
@@ -205,7 +205,7 @@ GameScreenFunction_HandleBallLoss: ; 0xda36
ld [wd49c], a
ld [wDrawBottomMessageBox], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, ShootAgainText
call LoadScrollingText
diff --git a/engine/pinball_game/ball_loss/ball_loss.asm b/engine/pinball_game/ball_loss/ball_loss.asm
index 0a3d8d9..af6a8e9 100644
--- a/engine/pinball_game/ball_loss/ball_loss.asm
+++ b/engine/pinball_game/ball_loss/ball_loss.asm
@@ -37,7 +37,7 @@ ShowBallLossText: ; 0xdc6d
; Input: de = pointer to scrolling text header
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
pop de
call LoadScrollingText
diff --git a/engine/pinball_game/ball_loss/ball_loss_diglett_bonus.asm b/engine/pinball_game/ball_loss/ball_loss_diglett_bonus.asm
index b4e341f..999ee09 100644
--- a/engine/pinball_game/ball_loss/ball_loss_diglett_bonus.asm
+++ b/engine/pinball_game/ball_loss/ball_loss_diglett_bonus.asm
@@ -17,7 +17,7 @@ HandleBallLossDiglettBonus: ; 0xe056
and a
ret nz
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, EndDiglettStageText
call LoadScrollingText
diff --git a/engine/pinball_game/ball_loss/ball_loss_gengar_bonus.asm b/engine/pinball_game/ball_loss/ball_loss_gengar_bonus.asm
index 59bc3d3..5f8248f 100644
--- a/engine/pinball_game/ball_loss/ball_loss_gengar_bonus.asm
+++ b/engine/pinball_game/ball_loss/ball_loss_gengar_bonus.asm
@@ -43,7 +43,7 @@ HandleBallLossGengarBonus: ; 0xdf1a
and a
ret nz
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, EndGengarStageText
call LoadScrollingText
diff --git a/engine/pinball_game/ball_loss/ball_loss_meowth_bonus.asm b/engine/pinball_game/ball_loss/ball_loss_meowth_bonus.asm
index 05d731b..cfd12b5 100644
--- a/engine/pinball_game/ball_loss/ball_loss_meowth_bonus.asm
+++ b/engine/pinball_game/ball_loss/ball_loss_meowth_bonus.asm
@@ -50,7 +50,7 @@ HandleBallLossMeowthBonus: ; 0xdfe2
and a
ret nz
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, EndMeowthStageText
call LoadScrollingText
diff --git a/engine/pinball_game/ball_loss/ball_loss_mewtwo_bonus.asm b/engine/pinball_game/ball_loss/ball_loss_mewtwo_bonus.asm
index 949f8a8..cf1a5a4 100644
--- a/engine/pinball_game/ball_loss/ball_loss_mewtwo_bonus.asm
+++ b/engine/pinball_game/ball_loss/ball_loss_mewtwo_bonus.asm
@@ -43,7 +43,7 @@ HandleBallLossMewtwoBonus: ; 0xdf7e
and a
ret nz
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, EndMewtwoStageText
call LoadScrollingText
diff --git a/engine/pinball_game/ball_loss/ball_loss_seel_bonus.asm b/engine/pinball_game/ball_loss/ball_loss_seel_bonus.asm
index ee2e41a..18baa5a 100644
--- a/engine/pinball_game/ball_loss/ball_loss_seel_bonus.asm
+++ b/engine/pinball_game/ball_loss/ball_loss_seel_bonus.asm
@@ -49,7 +49,7 @@ HandleBallLossSeelBonus: ; 0xe08b
and a
ret nz
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, EndSeelStageText
call LoadScrollingText
diff --git a/engine/pinball_game/catchem_mode.asm b/engine/pinball_game/catchem_mode.asm
index f556c2d..8b81460 100644
--- a/engine/pinball_game/catchem_mode.asm
+++ b/engine/pinball_game/catchem_mode.asm
@@ -929,7 +929,7 @@ ShowAnimatedWildMon: ; 0x10678
Func_10696: ; 0x10696
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, LetsGetPokemonText
call LoadScrollingText
@@ -937,7 +937,7 @@ Func_10696: ; 0x10696
Func_106a6: ; 0x106a6
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, PokemonRanAwayText
call LoadScrollingText
@@ -978,7 +978,7 @@ Func_106b6: ; 0x106b6
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
pop de
call LoadScrollingText
@@ -1157,15 +1157,15 @@ PlayLowTimeSfx: ; 0x107f8
ret
Func_10825: ; 0x10825
- call Retrieve8DigitBCDValueAtwd47a
+ call Retrieve8DigitBCDValueAtwd47a ;retreive ???, put it on the stack
push bc
push de
call AddBCDEToCurBufferValue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wStationaryText2
ld de, Data_2a50
- call Func_3372
+ call LoadScoreTextFromStack
pop de
pop bc
ld hl, wStationaryText1
@@ -1177,7 +1177,7 @@ Func_10848: ; 0x10848
ld bc, OneHundredMillionPoints
callba AddBigBCD6FromQueue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText2
ld de, OneBillionText
call LoadScrollingText
diff --git a/engine/pinball_game/catchem_mode/catchem_mode_blue_field.asm b/engine/pinball_game/catchem_mode/catchem_mode_blue_field.asm
index 6a62d8a..b36aa74 100644
--- a/engine/pinball_game/catchem_mode/catchem_mode_blue_field.asm
+++ b/engine/pinball_game/catchem_mode/catchem_mode_blue_field.asm
@@ -126,10 +126,10 @@ Func_20394: ; 0x20394
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wStationaryText2
ld de, Data_2a2a
- call Func_3372
+ call LoadScoreTextFromStack
pop de
pop bc
ld hl, wStationaryText1
@@ -270,10 +270,10 @@ Func_204f1: ; 0x204f1
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wStationaryText2
ld de, Data_2a3d
- call Func_3372
+ call LoadScoreTextFromStack
pop de
pop bc
ld hl, wStationaryText1
diff --git a/engine/pinball_game/catchem_mode/catchem_mode_red_field.asm b/engine/pinball_game/catchem_mode/catchem_mode_red_field.asm
index 24f0ac5..cd1cfdc 100644
--- a/engine/pinball_game/catchem_mode/catchem_mode_red_field.asm
+++ b/engine/pinball_game/catchem_mode/catchem_mode_red_field.asm
@@ -124,10 +124,10 @@ Func_200d3: ; 0x200d3
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wStationaryText2
ld de, Data_2a2a
- call Func_3372
+ call LoadScoreTextFromStack
pop de
pop bc
ld hl, wStationaryText1
@@ -268,10 +268,10 @@ Func_20230: ; 0x20230
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wStationaryText2
ld de, Data_2a3d
- call Func_3372
+ call LoadScoreTextFromStack
pop de
pop bc
ld hl, wStationaryText1
diff --git a/engine/pinball_game/evolution_mode.asm b/engine/pinball_game/evolution_mode.asm
index a14e3ba..d939a9c 100755
--- a/engine/pinball_game/evolution_mode.asm
+++ b/engine/pinball_game/evolution_mode.asm
@@ -92,7 +92,7 @@ VideoData_10b2a: ; 0x10b2a
Func_10b3f: ; 0x10b3f
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld a, [wCurrentEvolutionType]
cp EVO_EXPERIENCE
@@ -548,7 +548,7 @@ Func_10e0a: ; 0x10e0a
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
pop de
call LoadScrollingText
@@ -593,7 +593,7 @@ Func_10e8b: ; 0x10e8b
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText2
ld de, Data_2b6b
call Func_32cc
diff --git a/engine/pinball_game/evolution_mode/evolution_mode_blue_field.asm b/engine/pinball_game/evolution_mode/evolution_mode_blue_field.asm
index f582ff4..1448ff8 100644
--- a/engine/pinball_game/evolution_mode/evolution_mode_blue_field.asm
+++ b/engine/pinball_game/evolution_mode/evolution_mode_blue_field.asm
@@ -70,7 +70,7 @@ Func_20c08: ; 0x20c08
ld bc, OneMillionPoints
callba AddBigBCD6FromQueue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld de, YeahYouGotItText
ld hl, wScrollingText1
call LoadScrollingText
@@ -256,7 +256,7 @@ Func_20da0: ; 0x20da0
.asm_20e1a
callba StopTimer
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, EvolutionFailedText
call LoadScrollingText
@@ -482,7 +482,7 @@ Func_20f75: ; 0x20f75
ld bc, ThreeHundredThousandPoints
callba AddBigBCD6FromQueue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld a, [wCurrentEvolutionType]
dec a
ld c, a
@@ -526,7 +526,7 @@ Func_20fef: ; 0x20fef
ld bc, ThreeHundredThousandPoints
callba AddBigBCD6FromQueue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld a, [wCurrentEvolutionType]
cp EVO_EXPERIENCE
@@ -624,7 +624,7 @@ asm_210c7:
call Func_7dc
.asm_21102
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld a, [wCurrentEvolutionType]
cp EVO_EXPERIENCE
ld de, PokemonRecoveredText
diff --git a/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm b/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm
index a2425ad..f9f0ce6 100644
--- a/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm
+++ b/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm
@@ -73,7 +73,7 @@ Func_205e0: ; 0x205e0
ld bc, OneMillionPoints
callba AddBigBCD6FromQueue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld de, YeahYouGotItText
ld hl, wScrollingText1
call LoadScrollingText
@@ -259,7 +259,7 @@ Func_2077b: ; 0x2077b
.asm_207f5
callba StopTimer
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, EvolutionFailedText
call LoadScrollingText
@@ -505,7 +505,7 @@ Func_20977: ; 0x20977
ld bc, ThreeHundredThousandPoints
callba AddBigBCD6FromQueue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld a, [wCurrentEvolutionType]
dec a
ld c, a
@@ -548,7 +548,7 @@ Func_209eb: ; 0x209eb
ld bc, ThreeHundredThousandPoints
callba AddBigBCD6FromQueue
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld a, [wCurrentEvolutionType]
cp EVO_EXPERIENCE
@@ -626,7 +626,7 @@ asm_20a9f:
call Func_7dc
.asm_20ada
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld a, [wCurrentEvolutionType]
cp EVO_EXPERIENCE
ld de, PokemonRecoveredText
diff --git a/engine/pinball_game/extra_ball.asm b/engine/pinball_game/extra_ball.asm
index e0c99ae..c575e60 100644
--- a/engine/pinball_game/extra_ball.asm
+++ b/engine/pinball_game/extra_ball.asm
@@ -9,7 +9,7 @@ ShowExtraBallMessage: ; 0x30188
cp $1
jr nz, .asm_301a7
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, ExtraBallText
call LoadScrollingText
@@ -21,7 +21,7 @@ ShowExtraBallMessage: ; 0x30188
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText2
ld de, DigitsText1to9
call Func_32cc
diff --git a/engine/pinball_game/map_move.asm b/engine/pinball_game/map_move.asm
index b935243..85494ff 100755
--- a/engine/pinball_game/map_move.asm
+++ b/engine/pinball_game/map_move.asm
@@ -63,7 +63,7 @@ LoadScrollingMapNameText: ; 0x3118f
; Input: bc = pointer to prefix scrolling text
push bc
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld a, [wCurrentMap]
sla a
ld c, a
@@ -509,7 +509,7 @@ UpdateMapMove_RedField: ; 0x3151f handle map move timer and fail when it expires
.asm_31577
callba StopTimer ;stop the timer
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, MapMoveFailedText
call LoadScrollingText
@@ -663,7 +663,7 @@ UpdateMapMove_BlueField: ; 0x3168c
.asm_316ee
callba StopTimer
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, MapMoveFailedText
call LoadScrollingText
diff --git a/engine/pinball_game/object_collision/blue_stage_resolve_collision.asm b/engine/pinball_game/object_collision/blue_stage_resolve_collision.asm
index 8d80360..d26f133 100644
--- a/engine/pinball_game/object_collision/blue_stage_resolve_collision.asm
+++ b/engine/pinball_game/object_collision/blue_stage_resolve_collision.asm
@@ -1343,7 +1343,7 @@ ShowBonusMultiplierMessage_BlueField: ; 0x1d5bf
xor a
ld [wd613], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, BonusMultiplierText
call LoadScrollingText
@@ -2086,7 +2086,7 @@ ResolveBallUpgradeTriggersCollision_BlueField: ; 0x1e356
lb de, $06, $3a
call PlaySoundEffect
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, FieldMultiplierText
call LoadScrollingText
@@ -2111,7 +2111,7 @@ ResolveBallUpgradeTriggersCollision_BlueField: ; 0x1e356
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText2
ld de, DigitsText1to8
call Func_32cc
@@ -2657,7 +2657,7 @@ DoSlotLogic_BlueField: ; 0x1e830
ShowScrollingGoToBonusText_BlueField: ; 0x1e8c3
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld a, [wNextStage]
ld de, GoToMeowthStageText
diff --git a/engine/pinball_game/object_collision/diglett_bonus_resolve_collision.asm b/engine/pinball_game/object_collision/diglett_bonus_resolve_collision.asm
index bf48d71..902fd69 100644
--- a/engine/pinball_game/object_collision/diglett_bonus_resolve_collision.asm
+++ b/engine/pinball_game/object_collision/diglett_bonus_resolve_collision.asm
@@ -676,7 +676,7 @@ Func_1ab30: ; 0x1ab30
ld a, $1
ld [wCompletedBonusStage], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, DiglettStageClearedText
call LoadScrollingText
diff --git a/engine/pinball_game/object_collision/gengar_bonus_resolve_collision.asm b/engine/pinball_game/object_collision/gengar_bonus_resolve_collision.asm
index 0ddb3c4..69dac96 100644
--- a/engine/pinball_game/object_collision/gengar_bonus_resolve_collision.asm
+++ b/engine/pinball_game/object_collision/gengar_bonus_resolve_collision.asm
@@ -1004,7 +1004,7 @@ Func_189af: ; 0x189af
ld a, $1
ld [wCompletedBonusStage], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, GengarStageClearedText
call LoadScrollingText
diff --git a/engine/pinball_game/object_collision/meowth_bonus_resolve_collision.asm b/engine/pinball_game/object_collision/meowth_bonus_resolve_collision.asm
index 95cd4b5..fe9b7a9 100644
--- a/engine/pinball_game/object_collision/meowth_bonus_resolve_collision.asm
+++ b/engine/pinball_game/object_collision/meowth_bonus_resolve_collision.asm
@@ -201,7 +201,7 @@ ResolveMeowthBonusGameObjectCollisions: ; 0x2442a
ld a, $1
ld [wCompletedBonusStage], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, MeowthStageClearedText
call LoadScrollingText
diff --git a/engine/pinball_game/object_collision/mewtwo_bonus_resolve_collision.asm b/engine/pinball_game/object_collision/mewtwo_bonus_resolve_collision.asm
index 119ffa3..0d8dd5a 100644
--- a/engine/pinball_game/object_collision/mewtwo_bonus_resolve_collision.asm
+++ b/engine/pinball_game/object_collision/mewtwo_bonus_resolve_collision.asm
@@ -350,7 +350,7 @@ Func_19638: ; 0x19638
ld a, $1
ld [wCompletedBonusStage], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
.asm_1966b
ld de, MewtwoStageClearedText
diff --git a/engine/pinball_game/object_collision/red_stage_resolve_collision.asm b/engine/pinball_game/object_collision/red_stage_resolve_collision.asm
index 8134d0e..2f706ed 100644
--- a/engine/pinball_game/object_collision/red_stage_resolve_collision.asm
+++ b/engine/pinball_game/object_collision/red_stage_resolve_collision.asm
@@ -978,7 +978,7 @@ ResolveBallUpgradeTriggersCollision_RedField: ; 0x1535d
lb de, $06, $3a
call PlaySoundEffect
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld de, FieldMultiplierText
ld hl, wScrollingText1
call LoadScrollingText
@@ -1003,7 +1003,7 @@ ResolveBallUpgradeTriggersCollision_RedField: ; 0x1535d
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText2
ld de, DigitsText1to8
call Func_32cc
@@ -2109,7 +2109,7 @@ DoSlotLogic_RedField: ; 0x16352
ShowScrollingGoToBonusText_RedField: ; 0x163f2
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld a, [wNextStage]
ld de, GoToDiglettStageText
@@ -2848,7 +2848,7 @@ ShowBonusMultiplierMessage_RedField: ; 0x16ef5
xor a
ld [wd613], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText1
ld de, BonusMultiplierText
call LoadScrollingText
diff --git a/engine/pinball_game/object_collision/seel_bonus_resolve_collision.asm b/engine/pinball_game/object_collision/seel_bonus_resolve_collision.asm
index df40da0..a545eca 100644
--- a/engine/pinball_game/object_collision/seel_bonus_resolve_collision.asm
+++ b/engine/pinball_game/object_collision/seel_bonus_resolve_collision.asm
@@ -14,7 +14,7 @@ ResolveSeelBonusGameObjectCollisions: ; 0x25c5a
ld a, $1
ld [wCompletedBonusStage], a
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText3
ld de, SeelStageClearedText
call LoadScrollingText
diff --git a/engine/pinball_game/slot.asm b/engine/pinball_game/slot.asm
index 0cf52d2..f053e77 100644
--- a/engine/pinball_game/slot.asm
+++ b/engine/pinball_game/slot.asm
@@ -367,7 +367,7 @@ SlotRewardUpgradeBall: ; 0xf040
lb de, $06, $3a
call PlaySoundEffect
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld de, FieldMultiplierText
ld hl, wScrollingText1
call LoadScrollingText
@@ -393,7 +393,7 @@ SlotRewardUpgradeBall: ; 0xf040
push bc
push de
call FillBottomMessageBufferWithBlackTile
- call Func_30db
+ call EnableBottomText
ld hl, wScrollingText2
ld de, DigitsText1to8
call Func_32cc
diff --git a/text/scrolling_text.asm b/text/scrolling_text.asm
index c749343..d55d8a9 100644
--- a/text/scrolling_text.asm
+++ b/text/scrolling_text.asm
@@ -75,7 +75,7 @@ JackpotText:
db "JACKPOT @"
Data_2a50:
- db $4a, $10, $b4, $00, $00, $00
+ db $4a, $10, $b4, $00, $00, $00 ;stationarytextheader
YouGotAText:
db $05, $54, $00, $00, $00, $1e