Skip to content

Commit

Permalink
Updated version number to v5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SoupPotato committed Sep 25, 2024
1 parent 652cf4f commit a8d32ef
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, 5 ;Box - Width
lb bc, 1, 4 ;Box - Width
ld a, [wSaveFileExists]
and a
jr nz, .has_save_file
; no save file
hlcoord 13, 15 ;Box - Position
hlcoord 14, 15 ;Box - Position
call Textbox
hlcoord 14, 16 ;Text - Width
hlcoord 15, 16 ;Text - Width
jr .no_save_file
.has_save_file
hlcoord 13, 11 ;Box - Position
hlcoord 14, 11 ;Box - Position
call Textbox
hlcoord 14, 12 ;Text - Width
hlcoord 15, 12 ;Text - Width
.no_save_file
ld de, .VersionString
jp PlaceString

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

MainMenu_PrintCurrentTimeAndDay:
Expand Down

0 comments on commit a8d32ef

Please sign in to comment.