From 723fee32e1e7967fdc384da72e5d425c00ed4eda Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 12 Jul 2015 06:16:30 +0200 Subject: [PATCH] (menu_video.c) Start using video_common.h typedefs here too --- menu/menu_video.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/menu/menu_video.c b/menu/menu_video.c index 1b9a715182..ac07f7a1bb 100644 --- a/menu/menu_video.c +++ b/menu/menu_video.c @@ -20,6 +20,8 @@ #include "menu_setting.h" #include "menu_video.h" +#include "../gfx/video_common.h" + #ifdef HAVE_OPENGL void menu_video_draw_frame( const shader_backend_t *shader, @@ -55,7 +57,7 @@ void menu_video_frame_background( bool force_transparency) { struct gfx_coords coords; - GLfloat color[16], black_color[16], + GRfloat color[16], black_color[16], vertex[8], tex_coord[8]; global_t *global = global_get_ptr();