Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-29 18:04:35 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-29 18:04:35 +0300
commitdb049eeeafee9ab4300120f3389275c8df4f19e7 (patch)
tree92ef0bcebe92883c07b584a6fad20903b16fb471
parent48982356669f60c398d454d244b1a43a09597738 (diff)
Examples update.
-rw-r--r--Examples/nrom_split_lossy/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Examples/nrom_split_lossy/Makefile b/Examples/nrom_split_lossy/Makefile
index 3ead29a..7f929c0 100644
--- a/Examples/nrom_split_lossy/Makefile
+++ b/Examples/nrom_split_lossy/Makefile
@@ -4,7 +4,6 @@ TILER?=nestiler
SOURCE=main.asm
EXECUTABLE=nrom_split_lossy.nes
HEIGHT1=128
-HEIGHT2=112
IMAGE?=../../TestImages/Images/me.png
@@ -26,7 +25,7 @@ build: $(EXECUTABLE)
all: $(EXECUTABLE)
clean:
- rm -f *.nes *.lst *.nl *.bin
+ rm -f *.nes *.lst *.nl *.bin preview*.png
run: $(EXECUTABLE)
$(EMU) $(EXECUTABLE)
@@ -45,10 +44,10 @@ $(PALETTE_0_BIN) $(PALETTE_1_BIN) \
$(PALETTE_2_BIN) $(PALETTE_3_BIN) \
$(PREVIEW_1) $(PREVIEW_2): $(IMAGE)
$(TILER) --mode bg --enable-palettes 0,1,2,3 \
- --in-0 $(IMAGE):0:$(HEIGHT1) --in-1 $(IMAGE):$(HEIGHT1):$(HEIGHT2) \
+ --in-0 $(IMAGE):0:$(HEIGHT1) --in-1 $(IMAGE):$(HEIGHT1) \
--out-pattern-table-0 $(PATTERN_0_BIN) --out-pattern-table-1 $(PATTERN_1_BIN) \
--out-name-table-0 $(NAME_TABLE_0_BIN) --out-name-table-1 $(NAME_TABLE_1_BIN) \
--out-attribute-table-0 $(ATTR_TABLE_0_BIN) --out-attribute-table-1 $(ATTR_TABLE_1_BIN) \
--out-palette-0 $(PALETTE_0_BIN) --out-palette-1 $(PALETTE_1_BIN) \
--out-palette-2 $(PALETTE_2_BIN) --out-palette-3 $(PALETTE_3_BIN) \
- --lossy --out-preview-0 $(PREVIEW_1) --out-preview-1 $(PREVIEW_2)
+ --lossy 3 --out-preview-0 $(PREVIEW_1) --out-preview-1 $(PREVIEW_2)