From: Toni Wilen Date: Sat, 12 Jun 2021 17:21:26 +0000 (+0300) Subject: Overscan blanking filter settings added to filter profiles X-Git-Tag: 4900~126 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=573ec3fa23896a96453b6a0d2c5e289c32c29857;p=francis%2Fwinuae.git Overscan blanking filter settings added to filter profiles --- diff --git a/od-win32/win32gui.cpp b/od-win32/win32gui.cpp index 29877df1..d00fd9b2 100644 --- a/od-win32/win32gui.cpp +++ b/od-win32/win32gui.cpp @@ -19245,6 +19245,8 @@ static const int filtertypes[] = { 0, 0, 0, 0, 0, + 0, + 0, 0, 0, 0, -1 }; static void *filtervars[] = { @@ -19260,6 +19262,8 @@ static void *filtervars[] = { &workprefs.gf[0].gfx_filter_keep_aspect, &workprefs.gf[0].gfx_filter_aspect, &workprefs.gf[0].gfx_filter_autoscale, &workprefs.gf[0].gfx_filter_bilinear, &workprefs.gf[0].gfx_filter_keep_autoscale_aspect, + &workprefs.gf[0].gfx_filter_integerscalelimit, + &workprefs.gf[0].gfx_filter_left_border, &workprefs.gf[0].gfx_filter_right_border, &workprefs.gf[0].gfx_filter_top_border, &workprefs.gf[0].gfx_filter_bottom_border, NULL }; static void *filtervars2[] = { @@ -19275,6 +19279,8 @@ static void *filtervars2[] = { &currprefs.gf[0].gfx_filter_keep_aspect, &currprefs.gf[0].gfx_filter_aspect, &currprefs.gf[0].gfx_filter_autoscale, &currprefs.gf[0].gfx_filter_bilinear, &currprefs.gf[0].gfx_filter_keep_autoscale_aspect, + &currprefs.gf[0].gfx_filter_integerscalelimit, + &currprefs.gf[0].gfx_filter_left_border, &currprefs.gf[0].gfx_filter_right_border, &currprefs.gf[0].gfx_filter_top_border, &currprefs.gf[0].gfx_filter_bottom_border, NULL };