From: Wolfgang (Blub) Bumiller <blub@speed.at>
Date: Wed, 27 Jun 2012 17:42:51 +0000 (+0200)
Subject: Commenting the VMXF_ flags
X-Git-Tag: 0.1-rc1~371^2~6
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f50c82f0adc3131002fcc3ada4c2559a442e0dd0;p=xonotic%2Fgmqcc.git

Commenting the VMXF_ flags
---

diff --git a/exec.h b/exec.h
index ad18738..bfa1f10 100644
--- a/exec.h
+++ b/exec.h
@@ -77,9 +77,10 @@ enum {
 
 #define JUMPS_DEFAULT 1000000
 
-#define VMXF_DEFAULT 0x0000
-#define VMXF_TRACE   0x0001
-#define VMXF_PROFILE 0x0002
+/* execute-flags */
+#define VMXF_DEFAULT 0x0000     /* default flags - nothing */
+#define VMXF_TRACE   0x0001     /* trace: print statements before executing */
+#define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
 
 struct qc_program_s;