From e3b606f00fca2849f6a4e5d378c5e81e397bb969 Mon Sep 17 00:00:00 2001 From: Edo Date: Sun, 19 Feb 2023 00:54:20 +0000 Subject: [PATCH] maint: at this point use defined for consistency --- _utility.gsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_utility.gsh b/_utility.gsh index 97b2f15..4de6bc1 100644 --- a/_utility.gsh +++ b/_utility.gsh @@ -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__ )