From 25cf369f2261fc9b337524653332c45dfbb59b2d Mon Sep 17 00:00:00 2001
From: Jaime Passos <lazymyuutsu@gmail.com>
Date: Tue, 25 Feb 2020 22:34:19 -0300
Subject: [PATCH] Fix (technically functional) string comparison counting an
 extra character in the comparison length

---
 src/dehacked.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dehacked.c b/src/dehacked.c
index 329cf8788..5d29ca280 100644
--- a/src/dehacked.c
+++ b/src/dehacked.c
@@ -10236,7 +10236,7 @@ static fixed_t find_const(const char **rword)
 		free(word);
 		return r;
 	}
-	else if (fastncmp("GT_",word,4)) {
+	else if (fastncmp("GT_",word,3)) {
 		r = get_gametype(word);
 		free(word);
 		return r;