From b92f1cbb1ca7b36802d2b5d69c3485c8db6547f2 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 10 Apr 2019 11:16:17 +0100 Subject: [PATCH] Fix incorrectly-decompiled value in TextScr.cpp --- src/TextScr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TextScr.cpp b/src/TextScr.cpp index 2b07d503..61662d9e 100644 --- a/src/TextScr.cpp +++ b/src/TextScr.cpp @@ -323,7 +323,7 @@ void StopTextScript() //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;