From 097b02a8a1bb7387ee57133f3272113b52516a46 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 27 Jun 2016 10:56:30 +0200 Subject: [PATCH] Add compilation of vector_2/vector_3 --- Makefile.common | 2 ++ griffin/griffin.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Makefile.common b/Makefile.common index ce8de44447..aa336ebc3a 100644 --- a/Makefile.common +++ b/Makefile.common @@ -670,6 +670,8 @@ endif OBJ += gfx/video_context_driver.o \ gfx/drivers_context/gfx_null_ctx.o \ gfx/video_state_tracker.o \ + libretro-common/gfx/math/vector_2.o \ + libretro-common/gfx/math/vector_3.o \ libretro-common/gfx/math/matrix_4x4.o \ libretro-common/gfx/math/matrix_3x3.o diff --git a/griffin/griffin.c b/griffin/griffin.c index 98bf0015e1..a47625cd1b 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -256,6 +256,8 @@ VIDEO DRIVER #include "../libretro-common/gfx/math/matrix_4x4.c" #include "../libretro-common/gfx/math/matrix_3x3.c" +#include "../libretro-common/gfx/math/vector_2.c" +#include "../libretro-common/gfx/math/vector_3.c" #if defined(GEKKO) #ifdef HW_RVL