thirtyflightsofloving/zaero/z_debug.h
Knightmare66 eb97af1598 Added sources for Zaero mission pack and 3ZB2 bot DLLs.
Added GetFileList() to game function imports in misison pack DLL game.h.
2020-02-23 16:15:28 -05:00

12 lines
No EOL
274 B
C

#ifndef __Z_DEBUG_H
#define __Z_DEBUG_H
#if defined(_DEBUG) && defined(_Z_TESTMODE)
void assertMsg(const char *msg, const char *file, int line);
#define DEBUG(expr, msg) ((!(expr)) ? assertMsg(msg, __FILE__, __LINE__),1 : 0)
#else
#define DEBUG(expr, msg) 0
#endif
#endif