]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
include opts_debug and opts_memchk in exec.c's standalone part for now to have it...
authorWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 8 Aug 2012 10:07:37 +0000 (12:07 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 8 Aug 2012 10:07:37 +0000 (12:07 +0200)
exec.c

diff --git a/exec.c b/exec.c
index 4a1ad09d8d600786df401b16f822a499173af020..bb1c5e59ad12a2f5d60946a666804530c81c6771 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -458,6 +458,9 @@ cleanup:
  */
 
 #if defined(QCVM_EXECUTOR)
  */
 
 #if defined(QCVM_EXECUTOR)
+bool        opts_debug    = false;
+bool        opts_memchk   = false;
+
 static int qc_print(qc_program *prog)
 {
     qcany *str = (qcany*)(prog->globals + OFS_PARM0);
 static int qc_print(qc_program *prog)
 {
     qcany *str = (qcany*)(prog->globals + OFS_PARM0);