Replace most osSyncPrintf calls with PRINTF macro (#1598)

* Replace most osSyncPrintf calls with PRINTF macro

* DEBUG -> OOT_DEBUG
This commit is contained in:
cadmic
2024-01-12 07:38:13 -08:00
committed by GitHub
parent 6eb3bf401c
commit 324db1d578
297 changed files with 2642 additions and 2679 deletions
+3 -3
View File
@@ -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;
}