mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-02 15:55:59 +00:00
ab90300062
* `vt.h` -> `terminal.h` * `VT_` -> `T_` (as in Terminal) * `vt.h` -> `terminal.h` in includes too Pepega * Sort out tiny terminal.h include inconsistencies * Format * -> `TE_` * format * `TE_` -> back to `VT_` (parkour!) * explicit VT
19 lines
362 B
C
19 lines
362 B
C
#include "global.h"
|
|
#include "terminal.h"
|
|
|
|
u32 gIsCtrlr2Valid = false;
|
|
|
|
void func_800D31A0(void) {
|
|
osSyncPrintf(VT_FGCOL(RED) "\n**** Freeze!! ****\n" VT_RST);
|
|
while (true) {
|
|
Sleep_Msec(1000);
|
|
}
|
|
}
|
|
|
|
void func_800D31F0(void) {
|
|
gIsCtrlr2Valid = (gPadMgr.validCtrlrsMask & 2) != 0;
|
|
}
|
|
|
|
void func_800D3210(void) {
|
|
gIsCtrlr2Valid = false;
|
|
}
|