(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

@@ -9,6 +9,7 @@
#include "../../mem/heap.h"
#include "../common/common.h"
int printerrors = true;
void gfx_clearscreen(){
int battery = 0;
@@ -43,6 +44,9 @@ int gfx_message(u32 color, const char* message, ...){
}
int gfx_errDisplay(char *src_func, int err, int loc){
if (!printerrors)
return 0;
gfx_clearscreen();
SWAPCOLOR(COLOR_ORANGE);
gfx_printf("\nAn error occured:\n\n");