diff options
Diffstat (limited to 'source/g_public.h')
-rw-r--r-- | source/g_public.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/g_public.h b/source/g_public.h index 1384ff9..789423e 100644 --- a/source/g_public.h +++ b/source/g_public.h @@ -155,9 +155,9 @@ typedef struct void (*WriteAngle) (float f); // managed memory allocation - void *(*TagMalloc) (size_t size, memtag_t tag); + void *(*TagMalloc) (size_t size, unsigned tag); void (*TagFree) (void *block); - void (*FreeTags) (memtag_t tag); + void (*FreeTags) (unsigned tag); // console variable interaction cvar_t *(*cvar) (const char *var_name, const char *value, int flags); |