From 205fd1ac81c2d1dcec010c478979bd6159edc72d Mon Sep 17 00:00:00 2001 From: Rangi Date: Sat, 13 Feb 2021 19:48:21 -0500 Subject: Identify hUILayoutFlags and hPikachuSpriteVRAMOffset --- home/text.asm | 4 ++-- home/window.asm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'home') diff --git a/home/text.asm b/home/text.asm index 3b6e229c..a8571722 100644 --- a/home/text.asm +++ b/home/text.asm @@ -62,7 +62,7 @@ PlaceNextChar:: cp "" jr nz, .NotNext ld bc, 2 * SCREEN_WIDTH - ldh a, [hFlagsFFFA] + ldh a, [hUILayoutFlags] bit 2, a jr z, .ok ld bc, SCREEN_WIDTH @@ -239,7 +239,7 @@ Paragraph:: jp NextChar PageChar:: - ldh a, [hFlagsFFFA] + ldh a, [hUILayoutFlags] bit 3, a jr z, .pageChar ld a, "" diff --git a/home/window.asm b/home/window.asm index 8ccb9de9..1be272f9 100644 --- a/home/window.asm +++ b/home/window.asm @@ -139,7 +139,7 @@ PlaceMenuCursor:: jr z, .checkForArrow1 ld bc, 40 push af - ldh a, [hFlagsFFFA] + ldh a, [hUILayoutFlags] bit 1, a ; is the menu double spaced? jr z, .doubleSpaced1 ld bc, 20 @@ -163,7 +163,7 @@ PlaceMenuCursor:: jr z, .checkForArrow2 ld bc, 40 push af - ldh a, [hFlagsFFFA] + ldh a, [hUILayoutFlags] bit 1, a ; is the menu double spaced? jr z, .doubleSpaced2 ld bc, 20 -- cgit v1.3.1-sl0p