From dce6a4973aa5883588e8f9aa088a867099d307e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agnis=20Aldi=C5=86=C5=A1=20=22NeZv=C4=93rs?= Date: Sat, 15 Nov 2025 14:56:58 +0200 Subject: [PATCH] remove resource preload for web makefile --- examples/Makefile.Web | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/Makefile.Web b/examples/Makefile.Web index 38cedd275..01426d7f5 100644 --- a/examples/Makefile.Web +++ b/examples/Makefile.Web @@ -1060,8 +1060,7 @@ textures/textures_srcrec_dstrec: textures/textures_srcrec_dstrec.c --preload-file textures/resources/scarfy.png@resources/scarfy.png textures/textures_screen_buffer: textures/textures_screen_buffer.c - $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \ - --preload-file textures/resources/road.png@resources/road.png + $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) textures/textures_textured_curve: textures/textures_textured_curve.c $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \