engine: platform: win32: do not call filesystem functions if filesystem_stdio was failed to load
This commit is contained in:
parent
6cef6f6a75
commit
a9bddaac64
1 changed files with 5 additions and 5 deletions
|
@ -356,9 +356,9 @@ static void ListMissingModules( dll_user_t *hInst )
|
||||||
byte *data;
|
byte *data;
|
||||||
char buf[MAX_VA_STRING];
|
char buf[MAX_VA_STRING];
|
||||||
|
|
||||||
if ( !hInst ) return;
|
if( !hInst || !g_fsapi.LoadFile ) return;
|
||||||
|
|
||||||
data = FS_LoadFile( hInst->dllName, NULL, false );
|
data = g_fsapi.LoadFile( hInst->dllName, NULL, false );
|
||||||
if( !data ) return;
|
if( !data ) return;
|
||||||
|
|
||||||
importDesc = GetImportDescriptor( hInst->dllName, data, &peHeader );
|
importDesc = GetImportDescriptor( hInst->dllName, data, &peHeader );
|
||||||
|
|
Loading…
Add table
Reference in a new issue