diff --git a/011.ehb_mode/Makefile b/011.ehb_mode/Makefile index 0d10bb7..a7fb110 100644 --- a/011.ehb_mode/Makefile +++ b/011.ehb_mode/Makefile @@ -1,8 +1,10 @@ -NUM_COLORS=64 +NUM_COLORS=32 MODULE=ehb_mode.s FLOPPY=bin/ehb_mode.adf IMAGEDATA=out/image-palette.s out/image.bin -IMAGEFILE=../assets/gigi.png +IMAGEFILE=../assets/gigi_full.png +SIZED_IMAGEFILE=out/image.png + EXTRA=$(IMAGEDATA) $(BOB_IMAGEDATA) init.s utils.s constants.i Makefile VASM_EXTRA_ARGS=-DSCREEN_COLORS=$(NUM_COLORS) @@ -12,5 +14,8 @@ endif include ../shared/base.mk -$(IMAGEDATA): $(IMAGECON) $(IMAGEFILE) $(SHARED_PALETTE) Makefile - $(IMAGECON) --input $(IMAGEFILE) --output out/image --output-bitplanes --output-grey-palette-asm --output-palette-asm --colors=32 --quantize $(EXTRA_HALF_BRITE) +$(SIZED_IMAGEFILE): $(IMAGEFILE) $(RESIZE) Makefile + $(RESIZE) --width=320 --height=256 --blur=0.75 --input=$(IMAGEFILE) --output=$(SIZED_IMAGEFILE) + +$(IMAGEDATA): $(IMAGECON) $(SIZED_IMAGEFILE) $(SHARED_PALETTE) Makefile + $(IMAGECON) --input $(SIZED_IMAGEFILE) --output out/image --output-bitplanes --output-grey-palette-asm --output-palette-asm --colors=32 --quantize $(EXTRA_HALF_BRITE) diff --git a/011.ehb_mode/screenshots/32-colors.png b/011.ehb_mode/screenshots/32-colors.png index 74fa3cb..e9592a3 100644 Binary files a/011.ehb_mode/screenshots/32-colors.png and b/011.ehb_mode/screenshots/32-colors.png differ diff --git a/011.ehb_mode/screenshots/64-colors.png b/011.ehb_mode/screenshots/64-colors.png index 2706899..7b8d3c3 100644 Binary files a/011.ehb_mode/screenshots/64-colors.png and b/011.ehb_mode/screenshots/64-colors.png differ diff --git a/011.ehb_mode/screenshots/diff.png b/011.ehb_mode/screenshots/diff.png index 69cf921..949c50b 100644 Binary files a/011.ehb_mode/screenshots/diff.png and b/011.ehb_mode/screenshots/diff.png differ