aboutsummaryrefslogtreecommitdiffstats
path: root/constants
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-06 21:13:17 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-06 21:13:17 -0400
commitdd08b8dd6b526cb191e921ba5a7b0b64d04d911f (patch)
treece57cfb43f685439de9ecfd472889b05e51f7df1 /constants
parentUse STARTER[123] constants in TitleMons (diff)
downloadpokeyellow-dd08b8dd6b526cb191e921ba5a7b0b64d04d911f.tar.gz
pokeyellow-dd08b8dd6b526cb191e921ba5a7b0b64d04d911f.tar.xz
pokeyellow-dd08b8dd6b526cb191e921ba5a7b0b64d04d911f.zip
Use labels for HRAM and VRAM
Diffstat (limited to '')
-rw-r--r--constants.asm3
-rw-r--r--constants/gfx_constants.asm9
2 files changed, 9 insertions, 3 deletions
diff --git a/constants.asm b/constants.asm
index f52af60d..3d428283 100644
--- a/constants.asm
+++ b/constants.asm
@@ -2,9 +2,6 @@ INCLUDE "charmap.asm"
INCLUDE "macros.asm"
-INCLUDE "hram.asm"
-INCLUDE "vram.asm"
-
INCLUDE "constants/hardware_constants.asm"
INCLUDE "constants/oam_constants.asm"
INCLUDE "constants/misc_constants.asm"
diff --git a/constants/gfx_constants.asm b/constants/gfx_constants.asm
index 0cc0d98d..6446a51f 100644
--- a/constants/gfx_constants.asm
+++ b/constants/gfx_constants.asm
@@ -20,3 +20,12 @@ SPRITEBUFFERSIZE EQU 7 * 7 * LEN_1BPP_TILE
HP_BAR_GREEN EQU 0
HP_BAR_YELLOW EQU 1
HP_BAR_RED EQU 2
+
+; hAutoBGTransferEnabled
+TRANSFERTOP EQU 0
+TRANSFERMIDDLE EQU 1
+TRANSFERBOTTOM EQU 2
+
+; hRedrawRowOrColumnMode
+REDRAW_COL EQU 1
+REDRAW_ROW EQU 2