Skip to content

Commit

Permalink
Updated Version to 5.2a
Browse files Browse the repository at this point in the history
  • Loading branch information
SoupPotato committed Dec 14, 2024
1 parent 2500032 commit ae2bb4e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions engine/menus/main_menu.asm
Original file line number Diff line number Diff line change
Expand Up @@ -260,25 +260,25 @@ MainMenuJoypadLoop:
ret

MainMenu_PrintCurrentVersion:
lb bc, 1, 4 ;Box - Width
lb bc, 1, 5 ;Box - Width
ld a, [wSaveFileExists]
and a
jr nz, .has_save_file
; no save file
hlcoord 14, 15 ;Box - Position
hlcoord 13, 15 ;Box - Position
call Textbox
hlcoord 15, 16 ;Text - Width
hlcoord 14, 16 ;Text - Width
jr .no_save_file
.has_save_file
hlcoord 14, 11 ;Box - Position
hlcoord 13, 11 ;Box - Position
call Textbox
hlcoord 15, 12 ;Text - Width
hlcoord 14, 12 ;Text - Width
.no_save_file
ld de, .VersionString
jp PlaceString

.VersionString
db "v5.2"
db "v5.2a"
db "@"

MainMenu_PrintCurrentTimeAndDay:
Expand Down

0 comments on commit ae2bb4e

Please sign in to comment.