mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Match idle.c (#1643)
This commit is contained in:
parent
795f7e5251
commit
8af0919e7d
1 changed files with 6 additions and 3 deletions
|
@ -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 (;;) {}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue