diff options
author | Astatin <[email protected]> | 2025-01-10 16:08:06 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-01-10 16:08:06 +0900 |
commit | dc5a9431bf4438000dcd028aa6b9c17c9ca492d8 (patch) | |
tree | 8a63e04d017dc58d8c88f9842e2cd2ca7273ab05 /main.gbasm | |
parent | 48f765802fc16071d1d605b1fd940bda4562d472 (diff) |
Use new relative label thingy
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -175,22 +175,22 @@ STAT_Entrypoint: PUSH AF LD A, $reg_lyc CP $09 - JR Z, =STAT_Entrypoint.End_Top_Bar + JR Z, =STAT_.End_Top_Bar CP $67 - JR Z, =STAT_Entrypoint.Start_dialogue - STAT_Entrypoint.Thin_font: + JR Z, =STAT_.Start_dialogue + STAT_.Thin_font: LD A, $palette_thin_font LD $reg_bg_palette, A - JR =STAT_Entrypoint.skip_dialogue + JR =STAT_.skip_dialogue - STAT_Entrypoint.Start_dialogue: + STAT_.Start_dialogue: LD A, $mem_display_flag BIT 0, A - JR Z, =STAT_Entrypoint.skip_dialogue + JR Z, =STAT_.skip_dialogue .ENABLE_WINDOW LD A, $mem_display_flag BIT 1, A - JR Z, =STAT_Entrypoint.Thin_font + JR Z, =STAT_.Thin_font LD A, $palette_bold_font LD $reg_bg_palette, A LD A, $77 @@ -199,12 +199,12 @@ STAT_Entrypoint: POP AF RETI - STAT_Entrypoint.skip_dialogue: + STAT_.skip_dialogue: .DISABLE_LYC_INTERRUPT POP AF RET - STAT_Entrypoint.End_Top_Bar: + STAT_.End_Top_Bar: .DISABLE_WINDOW LD A, $67 LD $reg_lyc, A |