Added another bugfix

This commit is contained in:
Clownacy 2019-08-01 00:34:35 +00:00
parent f0c062cdc8
commit d8d971c459

View file

@ -464,7 +464,14 @@ void PutTextScript()
if (gTS.face_x < (TEXT_LEFT * 0x200))
gTS.face_x += 0x1000;
#ifdef FIX_BUGS
gTS.rcText.top -= 2;
PutBitmap3(&gTS.rcText, gTS.face_x / 0x200, gTS.rcText.top, &rcFace, SURFACE_ID_FACE);
gTS.rcText.top += 2;
#else
// The top few rows of pixels are cut off by the clip rectangle, and the facepic is off-centre
PutBitmap3(&gTS.rcText, gTS.face_x / 0x200, gTS.rcText.top - 3, &rcFace, SURFACE_ID_FACE);
#endif
//Draw text
if (gTS.face)