mirror of
https://github.com/zeldaret/oot
synced 2026-09-11 12:15:24 -04:00
Replace most osSyncPrintf calls with PRINTF macro (#1598)
* Replace most osSyncPrintf calls with PRINTF macro * DEBUG -> OOT_DEBUG
This commit is contained in:
+3
-3
@@ -187,15 +187,15 @@ void ViMode_Save(ViMode* viMode) {
|
||||
|
||||
switch (SREG(59)) {
|
||||
case 1:
|
||||
osSyncPrintf("osViModePalLan1\n");
|
||||
PRINTF("osViModePalLan1\n");
|
||||
ViMode_LogPrint(&osViModePalLan1);
|
||||
break;
|
||||
case 2:
|
||||
osSyncPrintf("osViModeFpalLan1\n");
|
||||
PRINTF("osViModeFpalLan1\n");
|
||||
ViMode_LogPrint(&osViModeFpalLan1);
|
||||
break;
|
||||
default:
|
||||
osSyncPrintf("Custom\n");
|
||||
PRINTF("Custom\n");
|
||||
ViMode_LogPrint(&viMode->customViMode);
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user