From 3c2ed52442cb3eac66ddaeb191b598da1d47fe23 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 3 Mar 2016 18:00:06 -0600 Subject: [PATCH] Fix 21:9 base width and height values --- src/v_video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/v_video.cpp b/src/v_video.cpp index c22402301..52b8fdc86 100644 --- a/src/v_video.cpp +++ b/src/v_video.cpp @@ -1738,8 +1738,8 @@ const int BaseRatioSizes[7][4] = { 1152, 500, 0, 48*5/6 }, // 16:10 386, 166.6667, multiplied by three { 1224, 471, 0, 48*40/51 }, // 17:10 408, 156.8627, multiplied by three { 960, 640, (int)(6.5*FRACUNIT), 48*15/16 }, // 5:4 320, 213.3333, multiplied by three - { 1224, 471, 0, 48*40/51 }, // 17:10 408, 156.8627, multiplied by three (REDUNDANT) - { 568, 113, 0, 48*9/16 } // 21:9 + { 1224, 471, 0, 48*40/51 }, // 17:10 408, 156.8627, multiplied by three (REDUNDANT) + { 1707, 338, 0, 48*9/16 } // 21:9 568.8889, 337.5, multiplied by three }; void IVideo::DumpAdapters ()