From 691643b0354c5c1e386fe50d169451c6d584ab1a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 3 Jul 2020 10:53:02 +0200 Subject: [PATCH] - fix DTA_KeepRatio for fullscreen scaling. --- source/common/2d/v_draw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/2d/v_draw.cpp b/source/common/2d/v_draw.cpp index 816a22692..6b299bae8 100644 --- a/source/common/2d/v_draw.cpp +++ b/source/common/2d/v_draw.cpp @@ -438,7 +438,7 @@ bool SetTextureParms(F2DDrawer * drawer, DrawParms *parms, FGameTexture *img, do // First calculate the destination rect for an image of the given size and then reposition this object in it. DoubleRect rect; CalcFullscreenScale(drawer, parms->virtWidth, parms->virtHeight, parms->fsscalemode, rect); - parms->x = rect.left + parms->x * rect.width / parms->virtWidth; + parms->x = (parms->keepratio? 0 : rect.left) + parms->x * rect.width / parms->virtWidth; parms->y = rect.top + parms->y * rect.height / parms->virtHeight; parms->destwidth = parms->destwidth * rect.width / parms->virtWidth; parms->destheight = parms->destheight * rect.height / parms->virtHeight;