(untested) should hide errors in scripts

This commit is contained in:
Such Meme, Many Skill
2020-03-21 20:31:22 +01:00
parent d255dcf665
commit e4ae9d9d7c
3 changed files with 11 additions and 1 deletions

View File

@@ -158,6 +158,7 @@ int ParsePart(){
gfx_printf("Parsing error...\nPress any key to continue");
btn_wait();
forceExit = true;
printerrors = true;
return -1;
}
@@ -189,6 +190,8 @@ void ParseScript(char* path){
return;
}
printerrors = false;
while (!forceExit){
currentchar = GetNextByte();
@@ -279,5 +282,6 @@ void ParseScript(char* path){
}
}
printerrors = true;
f_close(&in);
}