doomdef.h: enable most debugging ifndef NDEBUG

This commit is contained in:
James R 2023-02-14 04:07:47 -08:00
parent 1d688c3417
commit a77234233b
2 changed files with 9 additions and 0 deletions

View file

@ -103,6 +103,14 @@ extern "C" {
//#define NOMD5
// If you don't disable ALL debug first, you get ALL debug enabled
#if !defined (NDEBUG)
#define PACKETDROP
#define PARANOIA
#define RANGECHECK
#define ZDEBUG
#endif
// Uncheck this to compile debugging code
//#define RANGECHECK
//#ifndef PARANOIA

View file

@ -15,6 +15,7 @@
#define __Z_ZONE__
#include <stdio.h>
#include "doomdef.h"
#include "doomtype.h"
#ifdef __cplusplus