diff options
author | Ryan Tandy <ryan@nardis.ca> | 2019-09-28 09:26:49 -0700 |
---|---|---|
committer | Ryan Tandy <ryan@nardis.ca> | 2019-10-11 08:30:42 -0700 |
commit | 3855a686b67e1b32192438dce1ff4e214b47cec0 (patch) | |
tree | bc65455df3699b4b3e7dd37fe0f630eaef1e6627 | |
parent | dd9527512e8f310bfc065320fff49ead703338a5 (diff) |
Extract copyright gfx to png
-rwxr-xr-x | engine/title.asm | 8 | ||||
-rw-r--r-- | gfx/intro/copyright.png | bin | 0 -> 269 bytes | |||
-rw-r--r-- | main.asm | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/engine/title.asm b/engine/title.asm index 6f6a6d8c..4e9a2d3a 100755 --- a/engine/title.asm +++ b/engine/title.asm @@ -425,16 +425,16 @@ ENDC Copyright: call ClearTileMap call LoadFontsExtra - ld de, TitleScreenGFX5 - ld hl, $9600 - lb bc, BANK(TitleScreenGFX5), 30 + ld de, CopyrightGFX + ld hl, vTiles2 tile $60 + lb bc, BANK(CopyrightGFX), 30 call Request2bpp hlcoord 2, 7 ld de, CopyrightString jp PlaceString CopyrightString: - db $60, $61, $62, $63, $7a, $7b, $7c, $7d + db $60, $61, $62, $63, $7a, $7b, $7c, $7d db $65, $66, $67, $68, $69, $6a next $60, $61, $62, $63, $7a, $7b, $7c, $7d db $6b, $6c, $6d, $6e, $6f, $70, $71, $72 diff --git a/gfx/intro/copyright.png b/gfx/intro/copyright.png Binary files differnew file mode 100644 index 00000000..0ad7c2ef --- /dev/null +++ b/gfx/intro/copyright.png @@ -1426,8 +1426,8 @@ ChangeBox_: dr $e3d25, $e4000 SECTION "bank39", ROMX, BANK[$39] -TitleScreenGFX5: - dr $e4000, $e41e0 +CopyrightGFX: + INCBIN "gfx/intro/copyright.2bpp" TitleScreenGFX3: IF DEF(GOLD) dr $e41e0, $e4260 |