From 420438ea79a0e673a2730e912e48d2b108f846da Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 25 Jan 2012 04:40:10 +0000 Subject: [PATCH] Fix the cause of all of OneManClan's issues. A 64bit portability issue that won't always trigger on every 64bit machine. Thanks to OMC for helping me find that. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3963 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/qclib/initlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/qclib/initlib.c b/engine/qclib/initlib.c index 03231db5f..d78b853ca 100644 --- a/engine/qclib/initlib.c +++ b/engine/qclib/initlib.c @@ -505,7 +505,7 @@ string_t PR_StringToProgs (progfuncs_t *progfuncs, char *str) if (!str) return 0; - if (str-progfuncs->stringtable < addressableused) + if (str >= progfuncs->stringtable && str < progfuncs->stringtable + addressableused) return str - progfuncs->stringtable; for (i = prinst->numallocedstrings-1; i >= 0; i--)