From 6990bd5752099d1158ed2c30940ffcaf61e33f56 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 31 Dec 2021 14:48:52 +0900 Subject: [PATCH] [gamecode] Add some more comments to dfunction_t --- include/QF/pr_comp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/QF/pr_comp.h b/include/QF/pr_comp.h index 0cd65d7e5..9072ea643 100644 --- a/include/QF/pr_comp.h +++ b/include/QF/pr_comp.h @@ -457,15 +457,15 @@ typedef struct dparmsize_s { typedef struct dfunction_s { pr_int_t first_statement; // negative numbers are builtins - pr_uint_t parm_start; + pr_uint_t parm_start; // beginning of locals data space pr_uint_t locals; // total ints of parms + locals pr_uint_t profile; // runtime - string_t s_name; + string_t s_name; // source function name string_t s_file; // source file defined in - pr_int_t numparms; + pr_int_t numparms; // -ve is varargs (1s comp of real count) dparmsize_t parm_size[MAX_PARMS]; } dfunction_t;