Shifting is not needed here

This commit is contained in:
nukeykt 2019-11-28 22:54:36 +09:00 committed by Christoph Oelckers
parent 6f4a6daaa2
commit acc8f01269

View file

@ -127,8 +127,8 @@ void printext(int x, int y, const char *buffer, short tilenum, char invisiblecol
unsigned char ch; unsigned char ch;
const int32_t screenwidth = scale(240<<16, xdim, ydim); const int32_t screenwidth = scale(240<<16, xdim, ydim);
x = xdim_to_320_16(x<<16); x = xdim_to_320_16(x);
y = ydim_to_200_16(y<<16); y = ydim_to_200_16(y);
for (i = 0; buffer[i] != 0; i++) for (i = 0; buffer[i] != 0; i++)
{ {