From 707a81346cbf3fb0a57237260a07a0e5980d0294 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sun, 7 Apr 2024 16:52:58 -0500 Subject: [PATCH] fix text overflow on high score --- src/gui/tutorial.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gui/tutorial.cpp b/src/gui/tutorial.cpp index f3a9ad261..eb46ec595 100644 --- a/src/gui/tutorial.cpp +++ b/src/gui/tutorial.cpp @@ -1439,13 +1439,15 @@ void FurnaceCV::render(unsigned char joyIn) { textWait=0; } } - } else if (joyPressed&15 && curText<5) { + } else if (joyPressed&15 && curText<3) { textWait=1; typeAddr=NULL; } if (typeAddr==NULL) { if (--textWait<0) { - if (curText==2) { + if (curText==4) { + textWait=90; + } else if (curText==2) { memset(tile1,0,80*56*sizeof(short)); inGame=true; } else {