filesystem: fix FS_GetDiskPath

This commit is contained in:
Alibek Omarov 2022-12-12 06:54:42 +03:00
parent 9e54ddfd55
commit 934d9ba69a
1 changed files with 2 additions and 3 deletions

View File

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