fix format

This commit is contained in:
6arelyFuture 2024-03-20 18:02:23 +01:00
parent 83e468f4be
commit 03a9e4a3ee
Signed by: Future
GPG Key ID: FA77F074E98D98A5

View File

@ -57,15 +57,15 @@
#endif #endif
#ifdef _UTILITY_DEBUG #ifdef _UTILITY_DEBUG
#define _VERIFY(cond, msg) \ #define _VERIFY(cond, msg) \
assertEx( cond, msg ) assertEx( cond, msg )
#define DEBUG_PRINT(msg) \ #define DEBUG_PRINT(msg) \
PRINT_FUNC( msg ) PRINT_FUNC( msg )
#else #else
/* The following are "empty" defines with gsc-tool */ /* The following are "empty" defines with gsc-tool */
#define _VERIFY(cond, msg) #define _VERIFY(cond, msg)
#define DEBUG_PRINT(msg) #define DEBUG_PRINT(msg)
#endif #endif
/* Use Cbuf. Should use the + to concatenate strings before using this */ /* Use Cbuf. Should use the + to concatenate strings before using this */
@ -115,7 +115,7 @@
#endif #endif
#if !defined(TOOL) #if !defined(TOOL)
#define PLAYER_NOTIFY_CMD(ent, str, action) ent notifyOnPlayerCommand( str, action ) #define PLAYER_NOTIFY_CMD(ent, str, action) ent notifyOnPlayerCommand( str, action )
#endif #endif
/* Tweak as necessary. Can be return, continue or break */ /* Tweak as necessary. Can be return, continue or break */