mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 18:52:07 +00:00
Use verbosePrint in rgbasm as well as rgblink
This commit is contained in:
@@ -8,6 +8,13 @@
|
||||
|
||||
extern bool verbose;
|
||||
|
||||
#define verbosePrint(...) \
|
||||
do { \
|
||||
if (verbose) { \
|
||||
fprintf(stderr, __VA_ARGS__); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
extern FILE *dependFile;
|
||||
extern std::string targetFileName;
|
||||
extern bool continueAfterMissingIncludes;
|
||||
|
||||
@@ -29,7 +29,6 @@ extern bool beVerbose;
|
||||
extern bool isWRAM0Mode;
|
||||
extern bool disablePadding;
|
||||
|
||||
// Helper macro for printing verbose-mode messages
|
||||
#define verbosePrint(...) \
|
||||
do { \
|
||||
if (beVerbose) { \
|
||||
|
||||
Reference in New Issue
Block a user