]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Commenting the VMXF_ flags
authorWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 27 Jun 2012 17:42:51 +0000 (19:42 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 27 Jun 2012 17:42:51 +0000 (19:42 +0200)
exec.h

diff --git a/exec.h b/exec.h
index ad1873858c3b4fbf104560a64a954f7311fac00b..bfa1f10be0ed5b6e798a2f89b477db473ac8dbc1 100644 (file)
--- 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;