From 93ebbc2cbc1bf800ab5ad9bbc9f3a414cc0d46c4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 11 Sep 2014 18:41:04 +0200 Subject: [PATCH] (D3D) Build fixes --- gfx/d3d9/d3d_shared.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/d3d9/d3d_shared.h b/gfx/d3d9/d3d_shared.h index 01e06b302e..a6bcaf4c49 100644 --- a/gfx/d3d9/d3d_shared.h +++ b/gfx/d3d9/d3d_shared.h @@ -15,8 +15,8 @@ static bool d3d_init_chain(d3d_video_t *d3d, const video_info_t *video_info); static void renderchain_free(void *data); -static void d3d_deinit_shader(d3d_video_t *d3d); -static bool d3d_init_shader(d3d_video_t *d3d); +void d3d_deinit_shader(void *data); +bool d3d_init_shader(void *data); void d3d_make_d3dpp(void *data, const video_info_t *info, D3DPRESENT_PARAMETERS *d3dpp);