Make some logic more like vanilla

This commit is contained in:
Clownacy 2020-04-25 17:58:06 +01:00
parent c5691d7570
commit e4e8453ba6

View file

@ -661,12 +661,12 @@ void InitTextObject(const char *name)
break;
case 2:
height = 9;
width = 8;
height = 18;
width = 16;
break;
}
font = LoadFont(path, width * magnification, height * magnification);
font = LoadFont(path, width, height);
}
void PutText(int x, int y, const char *text, unsigned long color)