mirror of
https://github.com/zeldaret/oot
synced 2026-05-26 07:39:01 -04:00
Match idle.c (#1643)
This commit is contained in:
+6
-3
@@ -56,6 +56,9 @@ void Idle_ThreadEntry(void* arg) {
|
||||
gViConfigYScale = 1.0f;
|
||||
|
||||
switch (osTvType) {
|
||||
#ifndef OOT_DEBUG
|
||||
case OS_TV_PAL:
|
||||
#endif
|
||||
case OS_TV_NTSC:
|
||||
gViConfigModeType = OS_VI_NTSC_LAN1;
|
||||
gViConfigMode = osViModeNtscLan1;
|
||||
@@ -66,11 +69,13 @@ void Idle_ThreadEntry(void* arg) {
|
||||
gViConfigMode = osViModeMpalLan1;
|
||||
break;
|
||||
|
||||
#ifdef OOT_DEBUG
|
||||
case OS_TV_PAL:
|
||||
gViConfigModeType = OS_VI_FPAL_LAN1;
|
||||
gViConfigMode = osViModeFpalLan1;
|
||||
gViConfigYScale = 0.833f;
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
|
||||
D_80009430 = 1;
|
||||
@@ -84,7 +89,5 @@ void Idle_ThreadEntry(void* arg) {
|
||||
osStartThread(&gMainThread);
|
||||
osSetThreadPri(NULL, OS_PRIORITY_IDLE);
|
||||
|
||||
while (1) {
|
||||
;
|
||||
}
|
||||
for (;;) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user