mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
engine: fix searching filesystem_stdio on mobile platforms
This commit is contained in:
@@ -56,8 +56,15 @@ static void FS_UnloadProgs( void )
|
||||
fs_hInstance = 0;
|
||||
}
|
||||
|
||||
qboolean FS_LoadProgs( const char *name )
|
||||
#ifdef XASH_INTERNAL_GAMELIBS
|
||||
#define FILESYSTEM_STDIO_DLL "filesystem_stdio"
|
||||
#else
|
||||
#define FILESYSTEM_STDIO_DLL "filesystem_stdio." OS_LIB_EXT
|
||||
#endif
|
||||
|
||||
qboolean FS_LoadProgs( void )
|
||||
{
|
||||
const char *name = FILESYSTEM_STDIO_DLL;
|
||||
FSAPI GetFSAPI;
|
||||
|
||||
fs_hInstance = COM_LoadLibrary( name, false, true );
|
||||
|
||||
Reference in New Issue
Block a user