shithub: choc

Download patch

ref: c00d374d689c3d7437b1ad55fbd23f9e20f60e5c
parent: b064565cb4967b62d1ebedb9087a254bd5b3280a
author: Simon Howard <fraggle@soulsphere.org>
date: Sun Aug 6 15:14:28 EDT 2017

setup: Remove porch/integer scale controls.

We've gone a bit overboard with adding new settings into this dialog,
and I think these two are sufficiently obscure that they're not worth
including in the UI. The options are still available in the config file,
so if people are sufficiently motivated they can turn these on or off.

--- a/src/setup/display.c
+++ b/src/setup/display.c
@@ -196,9 +196,6 @@
     TXT_AddWidgets(window,
         ar_checkbox = TXT_NewCheckBox("Fix aspect ratio",
                                       &aspect_ratio_correct),
-#if SDL_VERSION_ATLEAST(2, 0, 5)
-        TXT_NewCheckBox("Integer scaling", &integer_scaling),
-#endif
         TXT_If(gamemission == heretic || gamemission == hexen
             || gamemission == strife,
             TXT_NewCheckBox("Graphical startup", &graphical_startup)),
@@ -210,8 +207,6 @@
         TXT_NewCheckBox("Save screenshots in PNG format",
                         &png_screenshots),
 #endif
-        TXT_NewCheckBox("Flash borders (VGA porch emulation)",
-                        &vga_porch_flash),
         NULL);
 
     TXT_SignalConnect(ar_checkbox, "changed", GenerateSizesTable, sizes_table);