shithub: cstory

Download patch

ref: b92f1cbb1ca7b36802d2b5d69c3485c8db6547f2
parent: 5c68009e7adf9b31bb484ef511fc71a7f04d5b76
author: Clownacy <Clownacy@users.noreply.github.com>
date: Wed Apr 10 07:16:17 EDT 2019

Fix incorrectly-decompiled value in TextScr.cpp

--- a/src/TextScr.cpp
+++ b/src/TextScr.cpp
@@ -323,7 +323,7 @@
 //Prepare a new line
 void CheckNewLine()
 {
-	if (gTS.ypos_line[gTS.line % 4] == '0')
+	if (gTS.ypos_line[gTS.line % 4] == 48)
 	{
 		gTS.mode = 3;
 		g_GameFlags |= 4;