diff options
Diffstat (limited to 'src/debug.h')
-rw-r--r-- | src/debug.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/debug.h b/src/debug.h index 31b2b457b..db1989b77 100644 --- a/src/debug.h +++ b/src/debug.h @@ -84,3 +84,16 @@ #define MPHYSFSRWOPS_openRead(name) PHYSFSRWOPS_openRead(name) #endif // DEBUG_PHYSFS + + +#ifdef ENABLE_CHECKS + +#define CHECKLISTENERS \ + config.checkListeners(this, __FILE__, __LINE__); \ + serverConfig.checkListeners(this, __FILE__, __LINE__); + +#else // ENABLE_CHECKS + +#define CHECKLISTENERS + +#endif // ENABLE_CHECKS |