[n64-jp-1.1] irqmgr (#1876)

* [n64-jp-1.1] irqmgr

* Remove IRQMGR_PRINTF

* US is fine with the extra if 1s
This commit is contained in:
Derek Hensley
2026-09-02 20:29:47 -07:00
committed by GitHub
parent c85914172b
commit 486055ebec
3 changed files with 44 additions and 14 deletions
+2 -2
View File
@@ -93,13 +93,13 @@
#if MM_VERSION >= N64_US
#define PRINTF(args) (void)0
#else
#define PRINTF(args) (void)(args)
#define PRINTF(args) do { (void)(args); } while (0)
#endif
#else
#if MM_VERSION >= N64_US
#define PRINTF(format, ...) (void)0
#else
#define PRINTF(format, ...) (void)(format)
#define PRINTF(format, ...) do { (void)(format); } while (0)
#endif
#endif