diff options
Diffstat (limited to 'src/deh_main.h')
-rw-r--r-- | src/deh_main.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/deh_main.h b/src/deh_main.h index 416564d8..b1460a07 100644 --- a/src/deh_main.h +++ b/src/deh_main.h @@ -31,6 +31,13 @@ #include "doomfeatures.h" #include "md5.h" +// These are the limits that dehacked uses (from dheinit.h in the dehacked +// source). If these limits are exceeded, it does not generate an error, but +// a warning is displayed. + +#define DEH_VANILLA_NUMSTATES 966 +#define DEH_VANILLA_NUMSFX 107 + void DEH_Init(void); boolean DEH_ParseAssignment(char *line, char **variable_name, char **value); |