From 775d9ebe5413fe22a1bcd73278e53197dd7ab5ba Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 30 Aug 2000 15:58:18 +0000 Subject: [PATCH] wrong not sign :/ --- source/model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/model.c b/source/model.c index 25a3a23..4e9cff1 100644 --- a/source/model.c +++ b/source/model.c @@ -1215,7 +1215,7 @@ void Mod_TouchModel (char *name) mod = Mod_FindName (name); - if (~mod->needload) + if (!mod->needload) { if (mod->type == mod_alias) Cache_Check (&mod->cache);