From aac67f34f0aac987a2f9db65a85d77b28574ef25 Mon Sep 17 00:00:00 2001 From: Finny Merrill Date: Sat, 29 Nov 2003 22:54:43 +0000 Subject: [PATCH] Fixed bug in debug.qc which made non-debug releases stackfault. --- debug.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debug.qc b/debug.qc index 210951c..bdd04a8 100644 --- a/debug.qc +++ b/debug.qc @@ -16,6 +16,7 @@ void(entity who) MakeMeDebug; //============================================================== // A remove function which makes sure the entity hasn't already // been removed, and that it isn't the NIL object. +#ifdef DEBUG void(entity te) dremove = { if (!te) @@ -46,6 +47,7 @@ void(entity te) dremove = te.is_removed = TRUE; remove(te); }; +#endif //============================================================== // A command which just dumps your current location to the screen