summaryrefslogtreecommitdiff
path: root/src/p_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/p_local.h')
-rw-r--r--src/p_local.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/p_local.h b/src/p_local.h
index 2e602ad5..5ffefa3a 100644
--- a/src/p_local.h
+++ b/src/p_local.h
@@ -157,7 +157,10 @@ typedef struct
} d;
} intercept_t;
-#define MAXINTERCEPTS 128
+// Extended MAXINTERCEPTS, to allow for intercepts overrun emulation.
+
+#define MAXINTERCEPTS_ORIGINAL 128
+#define MAXINTERCEPTS (MAXINTERCEPTS_ORIGINAL + 61)
extern intercept_t intercepts[MAXINTERCEPTS];
extern intercept_t* intercept_p;