From 8a3a7572b4ef96dfdf49928d721449e94ca63929 Mon Sep 17 00:00:00 2001 From: Themaister Date: Mon, 26 Nov 2012 23:13:16 +0100 Subject: [PATCH] Fix build with HAVE_SDL_IMAGE is not defined. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3a1b4a893d..d9c65ad376 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ OBJ = retroarch.o \ gfx/scaler/pixconv.o \ gfx/scaler/scaler_int.o \ gfx/scaler/filter.o \ + gfx/image.o \ performance.o JOYCONFIG_OBJ = tools/retroarch-joyconfig.o \ @@ -238,9 +239,9 @@ ifeq ($(HAVE_XML), 1) endif ifeq ($(HAVE_XML), 1) - OBJ += gfx/state_tracker.o gfx/image.o + OBJ += gfx/state_tracker.o else ifeq ($(HAVE_CG), 1) - OBJ += gfx/state_tracker.o gfx/image.o + OBJ += gfx/state_tracker.o endif ifeq ($(HAVE_DYLIB), 1)