Change `main.c` to use defines in `__set_vi_mode`

This commit is contained in:
gijs 2023-10-19 19:43:03 +02:00
parent a34eed808c
commit ffce6e7f11
1 changed files with 3 additions and 2 deletions

View File

@ -161,7 +161,7 @@ void func_80072710(void) {
/* 2B38 80072738 */
void __set_vi_mode(s32 arg0) {
switch (osTvType) {
case 1:
case OS_TV_NTSC:
switch (arg0) {
case 2:
osViSetMode(&osViModeNtscLan1);
@ -171,7 +171,8 @@ void __set_vi_mode(s32 arg0) {
break;
}
break;
case 2:
case OS_TV_MPAL:
switch (arg0) {
case 2:
osViSetMode(&osViModeMpalLan1);