aboutsummaryrefslogtreecommitdiff
path: root/definitions.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-12-12 17:33:37 +0900
committerAstatin <[email protected]>2024-12-12 17:33:37 +0900
commitbfc32de4fd80c7bb51283840abf21d48151b5feb (patch)
treed38f2ca7acf89961f538a1ea7d65d279e42f81d2 /definitions.gbasm
parente93a99e8e8565db0111b40d3286ce3d78f263559 (diff)
Fix copy dialogue buffer update outside of VBlank (+ add dbg for lcd status at the end of expected vblank thingy)
Diffstat (limited to 'definitions.gbasm')
-rw-r--r--definitions.gbasm10
1 files changed, 6 insertions, 4 deletions
diff --git a/definitions.gbasm b/definitions.gbasm
index 8da8615..4e60a84 100644
--- a/definitions.gbasm
+++ b/definitions.gbasm
@@ -61,6 +61,8 @@
.DEFINE mem_display_flag ($c013)
; bit 0: if dialogue box is displayed
+; bit 1: dialogue box first line should be bold
+; bit 2: if dialogue box text should be refreshed
.DEFINE mem_current_mode ($c014)
.DEFINE mem_requested_mode ($c015)
@@ -140,10 +142,10 @@
.DEFINE dialogue_menu_choice3 $cac5
.DEFINE dialogue_menu_choice4 $cace
-.DEFINE dialogue_menu_choice1_cursor ($caa0)
-.DEFINE dialogue_menu_choice2_cursor ($caa9)
-.DEFINE dialogue_menu_choice3_cursor ($cac4)
-.DEFINE dialogue_menu_choice4_cursor ($cacd)
+.DEFINE dialogue_menu_choice1_cursor ($9dc1)
+.DEFINE dialogue_menu_choice2_cursor ($9dca)
+.DEFINE dialogue_menu_choice3_cursor ($9e01)
+.DEFINE dialogue_menu_choice4_cursor ($9e0a)
.DEFINE mem_last_animation_low_pointer ($cadf)