diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-02-13 19:48:34 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-02-13 19:48:34 -0500 |
commit | 95353fdefa95440eba012509722f2058739d45fe (patch) | |
tree | 224e69bcaafc7427f407bc9678e7bf2e8784cb51 /engine/menus/party_menu.asm | |
parent | 83f7d224c8c784deccc0b9ea49c833899efe0197 (diff) |
Identify hUILayoutFlags
Diffstat (limited to 'engine/menus/party_menu.asm')
-rw-r--r-- | engine/menus/party_menu.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/menus/party_menu.asm b/engine/menus/party_menu.asm index 6648ab54..ddb92f75 100644 --- a/engine/menus/party_menu.asm +++ b/engine/menus/party_menu.asm @@ -69,14 +69,14 @@ RedrawPartyMenu_:: pop hl push hl ld bc, SCREEN_WIDTH + 1 ; down 1 row and right 1 column - ldh a, [hFlagsFFF6] + ldh a, [hUILayoutFlags] set 0, a - ldh [hFlagsFFF6], a + ldh [hUILayoutFlags], a add hl, bc predef DrawHP2 ; draw HP bar and prints current / max HP - ldh a, [hFlagsFFF6] + ldh a, [hUILayoutFlags] res 0, a - ldh [hFlagsFFF6], a + ldh [hUILayoutFlags], a call SetPartyMenuHPBarColor ; color the HP bar (on SGB) pop hl jr .printLevel |