From b5df372143e2d4c5498a56d125d17ee663112248 Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 9 Jun 2020 01:35:50 -0700 Subject: [PATCH] Don't offset left side of V_DrawStringScaled This line wasn't in the the original functions, I don't know where I got it from. :V --- src/v_video.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/v_video.c b/src/v_video.c index 20931291f..0f6479205 100644 --- a/src/v_video.c +++ b/src/v_video.c @@ -1909,7 +1909,6 @@ void V_DrawStringScaled( if (!( flags & V_SNAPTOLEFT )) { left = ( right - BASEVIDWIDTH )/ 2;/* left edge of drawable area */ - x = ( left << FRACBITS )+ x; right -= left; } }