mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
Shifting is not needed here
This commit is contained in:
parent
6f4a6daaa2
commit
acc8f01269
1 changed files with 2 additions and 2 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue