From 4c9a4f06e1dabd4fa8a4083edea8fc685ba54087 Mon Sep 17 00:00:00 2001 From: Mark Olsen Date: Mon, 17 May 2010 01:47:51 +0000 Subject: [PATCH] Added a prototype for COM_LoadMallocFile(). Fixes crash on startup. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3532 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/common/common.h b/engine/common/common.h index fb5982519..a411888a5 100644 --- a/engine/common/common.h +++ b/engine/common/common.h @@ -369,6 +369,7 @@ qbyte *COM_LoadStackFile (const char *path, void *buffer, int bufsize); qbyte *COM_LoadTempFile (const char *path); qbyte *COM_LoadTempFile2 (const char *path); //allocates a little bit more without freeing old temp qbyte *COM_LoadHunkFile (const char *path); +qbyte *COM_LoadMallocFile (const char *path); void COM_LoadCacheFile (const char *path, struct cache_user_s *cu); void COM_CreatePath (char *path); void COM_Gamedir (const char *dir);