Should set RMENU smooth options correctly.

This commit is contained in:
Themaister 2013-02-17 01:20:34 +01:00
parent bdabb39eb6
commit 82a3e373c0

View File

@ -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