From 5370beb02646c6319eaabc756fb0cb61e672ee75 Mon Sep 17 00:00:00 2001 From: pogokeen Date: Mon, 26 Feb 2018 02:48:03 +0000 Subject: [PATCH] baselayer.cpp: add 1280x720 resolution to defaultres windowed resolutions git-svn-id: https://svn.eduke32.com/eduke32@6695 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/baselayer.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/build/src/baselayer.cpp b/source/build/src/baselayer.cpp index 7f141ef87..c8dc20d8e 100644 --- a/source/build/src/baselayer.cpp +++ b/source/build/src/baselayer.cpp @@ -65,8 +65,9 @@ char scantoasc[128] = { int32_t defaultres[][2] = { { 2560, 1440 }, { 2560, 1200 }, { 2560, 1080 }, { 1920, 1440 }, { 1920, 1200 }, { 1920, 1080 }, { 1680, 1050 }, { 1600, 1200 }, - { 1600, 900 }, { 1366, 768 }, { 1280, 1024 }, { 1280, 960 }, { 1152, 864 }, { 1024, 768 }, { 1024, 600 }, { 800, 600 }, - { 640, 480 }, { 640, 400 }, { 512, 384 }, { 480, 360 }, { 400, 300 }, { 320, 240 }, { 320, 200 }, { 0, 0 } }; + { 1600, 900 }, { 1366, 768 }, { 1280, 1024 }, { 1280, 960 }, { 1280, 720 }, { 1152, 864 }, { 1024, 768 }, { 1024, 600 }, + { 800, 600 }, { 640, 480 }, { 640, 400 }, { 512, 384 }, { 480, 360 }, { 400, 300 }, { 320, 240 }, { 320, 200 }, + { 0, 0 } }; int32_t GetKey(int32_t key)