diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-11-13 19:15:37 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-11-13 19:15:37 -0800 |
commit | 802454482c2843234a19a06f6acce360e0be3d60 (patch) | |
tree | 5b64111a903c93c75789390121965c055da45dd9 /util.c | |
parent | 3834192b16663bb4bf5098df5b7a053e9c9dd086 (diff) |
It is now possible to switch back and forth between the menu ROM and the game
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,9 +23,9 @@ #define warning_puts(msg) fputs(stderr, msg); #define fatal_puts(msg) fputs(stderr, msg); -#define info_printf(msg, args vprintf(msg, args) -#define warning_printf(msg, args vfprintf(stderr, msg, args) -#define fatal_printf(msg, args vfprintf(stderr, msg, args) +#define info_printf(msg, args) vprintf(msg, args) +#define warning_printf(msg, args) vfprintf(stderr, msg, args) +#define fatal_printf(msg, args) vfprintf(stderr, msg, args) #endif #include "blastem.h" //for headless global |