mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +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;
|
||||
|
||||
Reference in New Issue
Block a user