maint: at this point use defined for consistency

This commit is contained in:
6arelyFuture 2023-02-19 00:54:20 +00:00 committed by GitHub
parent cf2873d0b2
commit e3b606f00f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@
/* IW4x MP has printConsole Built-in. __VA_OPT__ requires C++20 compliant preprocessor */
/* Do not use the + to concatenate strings, let the GSC VM do it for you */
/* Other clients will have print avaiable */
#ifdef IW4MP
#if defined(IW4MP)
#define PRINT(format, ...) printConsole( format __VA_OPT__(,) __VA_ARGS__ )
#else
#define PRINT(format, ...) print( format __VA_OPT__(,) __VA_ARGS__ )