diff options
| author | Sylvie <35663410+Rangi42@users.noreply.github.com> | 2024-09-24 10:48:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-24 10:48:10 -0400 |
| commit | 6ae63a8ceac9c191ad89a1e9382ce3c87e6b2481 (patch) | |
| tree | 7cdbc055c2bb6c949946a4fd931a4451b0adff97 /home/load_font.asm | |
| parent | Identify more bit flags (#465) (diff) | |
| download | pokeyellow-6ae63a8ceac9c191ad89a1e9382ce3c87e6b2481.tar.gz pokeyellow-6ae63a8ceac9c191ad89a1e9382ce3c87e6b2481.tar.xz pokeyellow-6ae63a8ceac9c191ad89a1e9382ce3c87e6b2481.zip | |
Identify hardware register bits (#469)
Diffstat (limited to 'home/load_font.asm')
| -rw-r--r-- | home/load_font.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/load_font.asm b/home/load_font.asm index 3b56d3a8..0f48e84c 100644 --- a/home/load_font.asm +++ b/home/load_font.asm @@ -1,6 +1,6 @@ LoadFontTilePatterns:: ldh a, [rLCDC] - bit 7, a ; is the LCD enabled? + bit rLCDC_ENABLE, a jr nz, .on .off ld hl, FontGraphics @@ -16,7 +16,7 @@ LoadFontTilePatterns:: LoadTextBoxTilePatterns:: ldh a, [rLCDC] - bit 7, a ; is the LCD enabled? + bit rLCDC_ENABLE, a jr nz, .on .off ld hl, TextBoxGraphics @@ -32,7 +32,7 @@ LoadTextBoxTilePatterns:: LoadHpBarAndStatusTilePatterns:: ldh a, [rLCDC] - bit 7, a ; is the LCD enabled? + bit rLCDC_ENABLE, a jr nz, .on .off ld hl, HpBarAndStatusGraphics |
