From d8b9be9349ec97a612b62c66d15dd01d6945aae2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 4 Dec 2015 00:26:53 +0100 Subject: [PATCH] Put parentheses around earlier check --- gfx/video_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 8eb9d4f2a0..683649b3f9 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -1842,7 +1842,7 @@ void video_driver_frame(const void *data, unsigned width, !video_driver_state.filter.filter || !settings->video.post_filter_record || !data - || global && global->record.gpu_buffer + || (global && global->record.gpu_buffer) ) ) recording_dump_frame(data, width, height, pitch);