diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-09-12 16:39:56 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-09-12 17:14:15 -0400 |
commit | 24d95f7de2da127a5d9ee71372c61be20a522549 (patch) | |
tree | e4ea3be29be9d42cd70d9e0becf1f1e122b0c72b /source/bank_72.asm | |
parent | 4cd3f07069f198ef3df094b2b8c477f969ff59f6 (diff) |
Extract the rest of the level graphics, and add gfx subdirectories
Diffstat (limited to 'source/bank_72.asm')
-rw-r--r-- | source/bank_72.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source/bank_72.asm b/source/bank_72.asm new file mode 100644 index 0000000..fd5f5f5 --- /dev/null +++ b/source/bank_72.asm @@ -0,0 +1,17 @@ +SECTION "bank72", ROMX[$4800], BANK[$72] + +; The Safari Zone level 1 was renamed from Forest Zone to Plain Zone, +; but only the CGB graphics were updated, leaving the old name in +; the SGB and duplicate CGB graphics. + +gfx_lv_1_plain_zone:: +INCBIN "gfx/levels/lv_1_plain_zone.bin" +.end:: + +gfx_lv_1_plain_zone_sgb:: +INCBIN "gfx/levels/lv_1_forest_zone_sgb.bin" +.end:: + +gfx_lv_1_plain_zone_duplicate:: +INCBIN "gfx/levels/lv_1_forest_zone.bin" +.end:: |