From 68d87de2516db00c781da0500fb13f2862f1bc38 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 22 Jan 2022 11:38:26 +0900 Subject: [PATCH] [gamecode] Clarify docs for PR_CallFunction I found the docs in PR_ExecuteProgram and PR_CallFunction to be a little confusing, so making it explicit that PR_ExecuteProgram calls PR_CallFunction and that PR_CallFunction should be called only in a builtin seemed like a good idea. --- include/QF/progs.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/QF/progs.h b/include/QF/progs.h index 0709e4891..3da8bca00 100644 --- a/include/QF/progs.h +++ b/include/QF/progs.h @@ -166,6 +166,7 @@ void PR_PopFrame (progs_t *pr); return to the caller. Nested calls are fully supported. \param pr pointer to ::progs_t VM struct \param fnum number of the function to call + \note Calls PR_CallFunction() */ void PR_ExecuteProgram (progs_t *pr, pr_func_t fnum); @@ -179,6 +180,9 @@ void PR_ExecuteProgram (progs_t *pr, pr_func_t fnum); written \return true if \p fnum was a progs function, false if \p fnum was a builtin + \note Called by PR_ExecuteProgram, so the only time this should be called + is in a builtin function that calls a progs function and returns + immediately (eg, to implement `return progsfunc();`). */ int PR_CallFunction (progs_t *pr, pr_func_t fnum, pr_type_t *return_ptr);