shithub: cstory

Download patch

ref: d8d971c45953462282f5cdd6ececc2f90127ae7c
parent: f0c062cdc8bbe89450466caec89d7efffae91641
author: Clownacy <Clownacy@users.noreply.github.com>
date: Wed Jul 31 20:34:35 EDT 2019

Added another bugfix

--- a/src/TextScr.cpp
+++ b/src/TextScr.cpp
@@ -464,7 +464,14 @@
 	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)