From 918106ffb9ea0eb7a2dbac95e0590d35a6bfe9df Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 23 Feb 2024 18:03:18 +0100 Subject: [PATCH] fixed wrong linking order of libraries in Makefile --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 6f586e0f..6e74c8e1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -255,7 +255,7 @@ GAME_SP = $(GAME_SP_DIR)/game_sp.a GAME_MM_DIR = game_mm GAME_MM = $(GAME_MM_DIR)/game_mm.a -RNDLIBS = $(LIBGAME) $(GAME_BD) $(GAME_EM) $(GAME_SP) $(GAME_MM) +RNDLIBS = $(GAME_BD) $(GAME_EM) $(GAME_SP) $(GAME_MM) $(LIBGAME) AUTOCONF = conf_gfx.h conf_snd.h conf_mus.h ICONBASE = windows_icon -- 2.34.1