2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 09:56:22 +01:00

filesystem: fix FS_GetDiskPath

This commit is contained in:
Alibek Omarov 2022-12-12 06:54:42 +03:00
parent 9e54ddfd55
commit 934d9ba69a

View File

@ -2489,14 +2489,13 @@ return NULL for file in pack
*/ */
const char *FS_GetDiskPath( const char *name, qboolean gamedironly ) const char *FS_GetDiskPath( const char *name, qboolean gamedironly )
{ {
int index;
searchpath_t *search; searchpath_t *search;
search = FS_FindFile( name, &index, gamedironly ); search = FS_FindFile( name, NULL, gamedironly );
if( search ) if( search )
{ {
if( index != -1 ) // file in pack or wad if( search->type != SEARCHPATH_PLAIN ) // file in pack or wad
return NULL; return NULL;
return va( "%s%s", search->filename, name ); return va( "%s%s", search->filename, name );
} }