From 76375ee7f031dd458a99dd88c15219e2ab0cd50e Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 12 Mar 2013 22:53:48 +0000 Subject: [PATCH] ------------------------------------------------------------------------ r4197 | acceptthis | 2013-02-12 19:15:44 +0000 (Tue, 12 Feb 2013) | 1 line small compile fix. ------------------------------------------------------------------------ git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4195 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/qclib/progsint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/qclib/progsint.h b/engine/qclib/progsint.h index 0a61f43d0..23080cf2f 100644 --- a/engine/qclib/progsint.h +++ b/engine/qclib/progsint.h @@ -470,7 +470,7 @@ void PDECL PR_Configure (pubprogfuncs_t *progfncs, size_t addressable_size, int int PDECL PR_InitEnts(pubprogfuncs_t *progfncs, int maxents); char *PR_ValueString (progfuncs_t *progfuncs, etype_t type, eval_t *val); void PDECL QC_ClearEdict (pubprogfuncs_t *progfuncs, struct edict_s *ed); -void PRAddressableFlush(progfuncs_t *progfuncs, int totalammount); +void PRAddressableFlush(progfuncs_t *progfuncs, size_t totalammount); void QC_FlushProgsOffsets(progfuncs_t *progfuncs); ddef16_t *ED_GlobalAtOfs16 (progfuncs_t *progfuncs, int ofs);