From 3815f2ea94fa833feeaf7535503bd78a99e00538 Mon Sep 17 00:00:00 2001 From: Jaby Date: Tue, 27 Dec 2022 20:59:07 +0100 Subject: [PATCH] LZ4 compress splash images --- src/Library/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Library/Makefile b/src/Library/Makefile index 18a8115c..ba511a31 100644 --- a/src/Library/Makefile +++ b/src/Library/Makefile @@ -43,10 +43,10 @@ $(LIB_DIR)/$(notdir $(OVERLAY_BOOT_OBJ)): $(OVERLAY_BOOT_OBJ) # Improve later $(SPLASH_IMAGE): ressources/Splash.png - jaby_engine_fconv $< simple-tim full16 | cpp_out --name SplashScreen -o $@ + jaby_engine_fconv --lz4 $< simple-tim full16 | cpp_out --name SplashScreen -o $@ $(SPLASH_IMAGE_NTSC): ressources/Splash_ntsc.png - jaby_engine_fconv $< simple-tim full16 | cpp_out --name SplashScreen -o $@ + jaby_engine_fconv --lz4 $< simple-tim full16 | cpp_out --name SplashScreen -o $@ #Rules section for default compilation and linking all: $(SPLASH_IMAGE) $(SPLASH_IMAGE_NTSC) $(LIB_DIR)/$(ARTIFACT).a $(LIB_DIR)/$(notdir $(MAIN_BOOT_OBJ)) $(LIB_DIR)/$(notdir $(OVERLAY_BOOT_OBJ))