Use IDO_PRINTF_WORKAROUND everywhere (#1685)

This commit is contained in:
cadmic
2024-02-01 07:11:33 -08:00
committed by GitHub
parent 99fd784bc2
commit 7c5ab8fcec
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -56,8 +56,7 @@ OSTime sRDPTimeStart;
#define SCHED_DEBUG_PRINTF \
if (sSchedDebugPrintfEnabled) \
PRINTF
#elif defined(__sgi)
// See comment about PRINTF in macros.h
#elif IDO_PRINTF_WORKAROUND
#define SCHED_DEBUG_PRINTF(args) (void)0
#else
#define SCHED_DEBUG_PRINTF(format, ...) (void)0
+1 -2
View File
@@ -15,8 +15,7 @@ static s32 sCurCeilingBgId;
#define ACTOR_DEBUG_PRINTF \
if (R_ENABLE_ACTOR_DEBUG_PRINTF) \
PRINTF
#elif defined(__sgi)
// See comment about PRINTF in macros.h
#elif IDO_PRINTF_WORKAROUND
#define ACTOR_DEBUG_PRINTF(args) (void)0
#else
#define ACTOR_DEBUG_PRINTF(format, ...) (void)0