mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-18 02:50:33 +00:00
filesystem: wad: static-ize WAD functions
This commit is contained in:
parent
fd2ad447a8
commit
81c752da2b
@ -251,7 +251,7 @@ FS_CloseWAD
|
|||||||
finalize wad or just close
|
finalize wad or just close
|
||||||
===========
|
===========
|
||||||
*/
|
*/
|
||||||
void FS_CloseWAD( wfile_t *wad )
|
static void FS_CloseWAD( wfile_t *wad )
|
||||||
{
|
{
|
||||||
Mem_FreePool( &wad->mempool );
|
Mem_FreePool( &wad->mempool );
|
||||||
if( wad->handle != NULL )
|
if( wad->handle != NULL )
|
||||||
@ -264,7 +264,7 @@ void FS_CloseWAD( wfile_t *wad )
|
|||||||
FS_Close_WAD
|
FS_Close_WAD
|
||||||
===========
|
===========
|
||||||
*/
|
*/
|
||||||
void FS_Close_WAD( searchpath_t *search )
|
static void FS_Close_WAD( searchpath_t *search )
|
||||||
{
|
{
|
||||||
FS_CloseWAD( search->wad );
|
FS_CloseWAD( search->wad );
|
||||||
}
|
}
|
||||||
@ -274,7 +274,7 @@ void FS_Close_WAD( searchpath_t *search )
|
|||||||
FS_OpenFile_WAD
|
FS_OpenFile_WAD
|
||||||
===========
|
===========
|
||||||
*/
|
*/
|
||||||
file_t *FS_OpenFile_WAD( searchpath_t *search, const char *filename, const char *mode, int pack_ind )
|
static file_t *FS_OpenFile_WAD( searchpath_t *search, const char *filename, const char *mode, int pack_ind )
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user