1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-05-09 18:43:45 +00:00
oot/src/code/sys_freeze.c
2025-04-22 18:37:29 -04:00

14 lines
282 B
C

#include "libc64/sleep.h"
#include "attributes.h"
#include "printf.h"
#include "sys_freeze.h"
#include "terminal.h"
#include "macros.h"
NORETURN void func_800D31A0(void) {
PRINTF(VT_FGCOL(RED) "\n**** Freeze!! ****\n" VT_RST);
for (;;) {
Sleep_Msec(1000);
}
}