From d103cfc4efee46451468d9142667e1e1d7625943 Mon Sep 17 00:00:00 2001 From: Stephane Dallongeville Date: Fri, 22 Nov 2024 22:13:55 +0100 Subject: [PATCH] formatting --- src/sys.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/sys.c b/src/sys.c index 92a6fd6a..83e63710 100644 --- a/src/sys.c +++ b/src/sys.c @@ -641,7 +641,6 @@ static void NO_INLINE internal_reset() // reseting z80 also reset the ym2612 Z80_init(); - // enable interrupts SYS_setInterruptMaskLevel(3); } @@ -1049,7 +1048,7 @@ void SYS_die(char *err, ...) VDP_setBackgroundColor(63); VDP_drawText("A fatal error occured!", 9, 2); VDP_drawText("cannot continue...", 11, 3); - + u8 y = 5; va_list argptr; @@ -1063,6 +1062,6 @@ void SYS_die(char *err, ...) y++; } va_end(argptr); - + while(1); } \ No newline at end of file