ootw: move some graphics around

This commit is contained in:
Vince Weaver 2019-03-08 10:58:43 -05:00
parent d61b02b2cc
commit a482f0be7b
7 changed files with 19 additions and 5 deletions

View File

@ -28,7 +28,7 @@ ootw.o: ootw.s \
ootw_rope.s earthquake.s ootw_mesa.s \
ootw_pool.s ootw_cavern.s physicist.s random16.s \
cutscene_slug.s cutscene_beast.s \
ootw_pool.inc \
ootw_graphics/pool/ootw_pool.inc \
ootw_cavern.inc ootw_cavern2.inc ootw_cavern3.inc ootw_underwater.inc \
ootw_rope.inc \
sprites_physicist.inc sprites_slugs.inc \
@ -168,9 +168,6 @@ HELLO: hello.bas
#####
ootw_pool.inc: $(PNG2RLE) another.png
$(PNG2RLE) asm another.png pool_rle > ootw_pool.inc
ootw_cavern.inc: $(PNG2RLE) another_cave.png
$(PNG2RLE) asm another_cave.png cavern_rle > ootw_cavern.inc

View File

@ -94,7 +94,7 @@ end_message:
.include "random16.s"
.include "keyboard.s"
; room backgrounds
.include "ootw_pool.inc"
.include "ootw_graphics/pool/ootw_pool.inc"
.include "ootw_cavern.inc"
.include "ootw_cavern2.inc"
.include "ootw_cavern3.inc"

View File

@ -0,0 +1,17 @@
include ../../../Makefile.inc
PNG2RLE = ../../../gr-utils/png2rle
PNG2LZ4 = ../../../gr-utils/png2lz4
all: ootw_pool.inc
#####
ootw_pool.inc: $(PNG2RLE) another_pool.png
$(PNG2RLE) asm another_pool.png pool_rle > ootw_pool.inc
#####
clean:
rm -f *~ *.o *.lst *.lzz *.inc

View File

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB