From 82a3e373c0864e2669290bd9cfb1c6af0a0c9572 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 17 Feb 2013 01:20:34 +0100 Subject: [PATCH] Should set RMENU smooth options correctly. --- gfx/shader_cg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/shader_cg.c b/gfx/shader_cg.c index 424912e76e..67096e2aa9 100644 --- a/gfx/shader_cg.c +++ b/gfx/shader_cg.c @@ -1025,11 +1025,11 @@ static bool load_preset(const char *path) switch (i) { case 0: - g_settings.video.smooth = fbo_smooth[1]; + g_settings.video.smooth = fbo_smooth[1] == FILTER_LINEAR; break; case 1: - g_settings.video.second_pass_smooth = fbo_smooth[2]; + g_settings.video.second_pass_smooth = fbo_smooth[2] == FILTER_LINEAR; break; } #endif