From acc8f01269e1948a109686a8b9aa9122fbd66821 Mon Sep 17 00:00:00 2001 From: nukeykt Date: Thu, 28 Nov 2019 22:54:36 +0900 Subject: [PATCH] Shifting is not needed here --- source/exhumed/src/enginesubs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/exhumed/src/enginesubs.cpp b/source/exhumed/src/enginesubs.cpp index 905e76511..09764f452 100644 --- a/source/exhumed/src/enginesubs.cpp +++ b/source/exhumed/src/enginesubs.cpp @@ -127,8 +127,8 @@ void printext(int x, int y, const char *buffer, short tilenum, char invisiblecol unsigned char ch; const int32_t screenwidth = scale(240<<16, xdim, ydim); - x = xdim_to_320_16(x<<16); - y = ydim_to_200_16(y<<16); + x = xdim_to_320_16(x); + y = ydim_to_200_16(y); for (i = 0; buffer[i] != 0; i++) {