@ -1386,7 +1386,7 @@ static void _Sys_Error( const char *fmt, ... )
@@ -1386,7 +1386,7 @@ static void _Sys_Error( const char *fmt, ... )
exit ( 1 ) ;
}
static void * _Platform _GetNativeObject_stub( const char * object )
static void * Sys _GetNativeObject_stub( const char * object )
{
return NULL ;
}
@ -2841,7 +2841,7 @@ fs_interface_t g_engfuncs =
@@ -2841,7 +2841,7 @@ fs_interface_t g_engfuncs =
_Mem_Alloc ,
_Mem_Realloc ,
_Mem_Free ,
_Platform _GetNativeObject_stub
Sys _GetNativeObject_stub
} ;
static qboolean FS_InitInterface ( int version , fs_interface_t * engfuncs )
@ -2883,9 +2883,9 @@ static qboolean FS_InitInterface( int version, fs_interface_t *engfuncs )
@@ -2883,9 +2883,9 @@ static qboolean FS_InitInterface( int version, fs_interface_t *engfuncs )
Con_Reportf ( " filesystem_stdio: custom memory allocation functions found \n " ) ;
}
if ( engfuncs - > _Platform _GetNativeObject )
if ( engfuncs - > _Sys _GetNativeObject )
{
g_engfuncs . _Platform _GetNativeObject = engfuncs - > _Platform _GetNativeObject ;
g_engfuncs . _Sys _GetNativeObject = engfuncs - > _Sys _GetNativeObject ;
Con_Reportf ( " filesystem_stdio: custom platform-specific functions found \n " ) ;
}