foxygit / doom Log in
commit d5453a38b44e47bbceb98fae6467f3810ab9030a
Author:     Jonathan Dowland <jon+github@alcopop.org>
AuthorDate: Mon Apr 11 07:28:01 2016 +0100
Commit:     Jonathan Dowland <jon+github@alcopop.org>
CommitDate: Mon Apr 11 15:29:36 2016 +0100

    remove 256x200 resolution option

    This resolution is a scale-down from Doom's native resolution. The vast
    majority of chocolate-doom players will not want to use it. Balance out
    the resolution table by adding 1920x1440 at the end, instead.

    Note it will still be possible for people to use 256x200 if they really
    want to: you can supply any width or height in chocolate-doom.cfg.
---
 src/setup/display.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setup/display.c b/src/setup/display.c
index c135cde3..f0b52b6f 100644
--- a/src/setup/display.c
+++ b/src/setup/display.c
@@ -53,7 +53,6 @@ static screen_mode_t screen_modes_unscaled[] =

 static screen_mode_t screen_modes_scaled[] =
 {
-    { 256,  200 },
     { 320,  240 },
     { 512,  400 },
     { 640,  480 },
@@ -62,6 +61,7 @@ static screen_mode_t screen_modes_scaled[] =
     { 1024, 800 },
     { 1280, 960 },
     { 1600, 1200 },
+    { 1920, 1440 },
     { 0, 0},
 };