From c720a9d711b24a18b5250c28cc181294fc659eb6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 7 Jan 2015 21:49:40 +0100 Subject: [PATCH] (gfx/video_filter.c) Build fix --- gfx/video_filter.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gfx/video_filter.c b/gfx/video_filter.c index e23854bd3a..68076db3fe 100644 --- a/gfx/video_filter.c +++ b/gfx/video_filter.c @@ -339,8 +339,12 @@ static bool append_softfilter_plugs(rarch_softfilter_t *filt, return true; } #else -static bool append_softfilter_plugs(rarch_softfilter_t *filt) +static bool append_softfilter_plugs(rarch_softfilter_t *filt, + struct string_list *list) { + (void)filt; + (void)list; + return false; } #endif