mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Use IDO_PRINTF_WORKAROUND everywhere (#1685)
This commit is contained in:
parent
99fd784bc2
commit
7c5ab8fcec
2 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue