[gamecode] Add VISIBLE to some missed functions

This commit is contained in:
Bill Currie 2020-03-26 15:36:46 +09:00
parent e893421dba
commit 22e2695f80

View file

@ -560,7 +560,7 @@ PR_SetDynamicString (progs_t *pr, const char *s)
return string_index (res, sr); return string_index (res, sr);
} }
void VISIBLE void
PR_MakeTempString (progs_t *pr, string_t str) PR_MakeTempString (progs_t *pr, string_t str)
{ {
prstr_resources_t *res = pr->pr_string_resources; prstr_resources_t *res = pr->pr_string_resources;
@ -619,7 +619,7 @@ PR_FreeString (progs_t *pr, string_t str)
PR_RunError (pr, "attempt to free invalid string %d", str); PR_RunError (pr, "attempt to free invalid string %d", str);
} }
void VISIBLE void
PR_FreeTempStrings (progs_t *pr) PR_FreeTempStrings (progs_t *pr)
{ {
prstr_resources_t *res = pr->pr_string_resources; prstr_resources_t *res = pr->pr_string_resources;