mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-09 18:43:45 +00:00
14 lines
282 B
C
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);
|
|
}
|
|
}
|