From 0ecdceb74480af898d89d71163514f0fac05cc10 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 19 Apr 2015 19:02:56 +0200 Subject: [PATCH] Always compile in video_context_driver.c and null stub context driver --- Makefile.common | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.common b/Makefile.common index 9397a25df5..5f81c8618c 100644 --- a/Makefile.common +++ b/Makefile.common @@ -437,14 +437,15 @@ ifeq ($(HAVE_PARPORT), 1) OBJ += input/drivers_joypad/parport_joypad.o endif +OBJ += gfx/video_context_driver.o \ + gfx/drivers_context/gfx_null_ctx.o + # Video # ifeq ($(HAVE_OPENGL), 1) DEFINES += -DHAVE_OPENGL -DHAVE_GLSL OBJ += gfx/drivers/gl.o \ gfx/drivers/gl_common.o \ - gfx/video_context_driver.o \ - gfx/drivers_context/gfx_null_ctx.o \ gfx/drivers_font/gl_raster_font.o \ libretro-common/gfx/math/matrix_4x4.o \ gfx/video_state_tracker.o \