From 61d08f41e00e10db6de6373b9b21e34f121eb73d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 17 Jul 2020 21:14:58 +0200 Subject: [PATCH] - fixed DTA_KeepRatio. --- 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 c0505a9ac..d22cd264b 100644 --- a/source/common/2d/v_draw.cpp +++ b/source/common/2d/v_draw.cpp @@ -1007,7 +1007,7 @@ bool ParseDrawTextureTags(F2DDrawer *drawer, FGameTexture *img, double x, double break; case DTA_KeepRatio: - parms->keepratio = ListGetInt(tags) ? 0 : -1; + parms->keepratio = ListGetInt(tags) ? -1 : 0; break; case DTA_Pin: