From 38c2afde62f1de0ce40fd7192e601ac54cb5c206 Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Sun, 24 Dec 2023 21:01:21 +0700 Subject: [PATCH] improve DRS image stability Previously the width was made even to fix the garbage column at the side of the screen. This is now no longer necessary. --- src/i_video.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/i_video.c b/src/i_video.c index 1cde26e9..d427bebc 100644 --- a/src/i_video.c +++ b/src/i_video.c @@ -1035,7 +1035,6 @@ static void ResetResolution(int height) double vertscale = (double)actualheight / (double)unscaled_actualheight; video.width = (int)(video.unscaledw * vertscale); - video.width = (video.width + 1) & ~1; video.deltaw = (video.unscaledw - NONWIDEWIDTH) / 2;