You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Use constants for menu flags
Added a bunch of constants for the bitflags of each kind of menu. Some are slightly vague or too long, but I'm not sure how to else name them.
This commit is contained in:
@ -553,7 +553,7 @@ Continue_LoadMenuHeader: ; 5ebf
|
||||
; 5ed9
|
||||
|
||||
.MenuDataHeader_Dex: ; 5ed9
|
||||
db $40 ; flags
|
||||
db MENU_BACKUP_TILES ; flags
|
||||
db 00, 00 ; start coords
|
||||
db 09, 15 ; end coords
|
||||
dw .MenuData2_Dex
|
||||
@ -561,7 +561,7 @@ Continue_LoadMenuHeader: ; 5ebf
|
||||
; 5ee1
|
||||
|
||||
.MenuData2_Dex: ; 5ee1
|
||||
db $00 ; flags
|
||||
db 0 ; flags
|
||||
db 4 ; items
|
||||
db "PLAYER@"
|
||||
db "BADGES@"
|
||||
@ -570,7 +570,7 @@ Continue_LoadMenuHeader: ; 5ebf
|
||||
; 5efb
|
||||
|
||||
.MenuDataHeader_NoDex: ; 5efb
|
||||
db $40 ; flags
|
||||
db MENU_BACKUP_TILES ; flags
|
||||
db 00, 00 ; start coords
|
||||
db 09, 15 ; end coords
|
||||
dw .MenuData2_NoDex
|
||||
@ -578,7 +578,7 @@ Continue_LoadMenuHeader: ; 5ebf
|
||||
; 5f03
|
||||
|
||||
.MenuData2_NoDex: ; 5f03
|
||||
db $00 ; flags
|
||||
db 0 ; flags
|
||||
db 4 ; items
|
||||
db "PLAYER <PLAYER>@"
|
||||
db "BADGES@"
|
||||
|
Reference in New Issue
Block a user