summaryrefslogtreecommitdiff
path: root/src/deh_text.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/deh_text.c')
-rw-r--r--src/deh_text.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/deh_text.c b/src/deh_text.c
index b4f7278e..ff5e2d70 100644
--- a/src/deh_text.c
+++ b/src/deh_text.c
@@ -31,6 +31,7 @@
#include "deh_defs.h"
#include "deh_io.h"
+#include "deh_main.h"
typedef struct
{
@@ -194,7 +195,7 @@ static void *DEH_TextStart(deh_context_t *context, char *line)
// Only allow string replacements that are possible in Vanilla Doom.
// Chocolate Doom is unforgiving!
- if (tolen > TXT_MaxStringLength(fromlen))
+ if (!deh_allow_long_strings && tolen > TXT_MaxStringLength(fromlen))
{
DEH_Error(context, "Replacement string is longer than the maximum "
"possible in doom.exe");