fix text overflow on high score

This commit is contained in:
tildearrow 2024-04-07 16:52:58 -05:00
parent 8f4a19870a
commit 707a81346c

View file

@ -1439,13 +1439,15 @@ void FurnaceCV::render(unsigned char joyIn) {
textWait=0; textWait=0;
} }
} }
} else if (joyPressed&15 && curText<5) { } else if (joyPressed&15 && curText<3) {
textWait=1; textWait=1;
typeAddr=NULL; typeAddr=NULL;
} }
if (typeAddr==NULL) { if (typeAddr==NULL) {
if (--textWait<0) { if (--textWait<0) {
if (curText==2) { if (curText==4) {
textWait=90;
} else if (curText==2) {
memset(tile1,0,80*56*sizeof(short)); memset(tile1,0,80*56*sizeof(short));
inGame=true; inGame=true;
} else { } else {