filesystem: add new export FS_GetFullDiskPath, similar to FS_GetDiskPath, but generates full path to the file, including searchpath

This commit is contained in:
Alibek Omarov
2023-05-02 08:52:54 +03:00
parent c33a384975
commit 5a7b68fcc1
7 changed files with 40 additions and 9 deletions

View File

@@ -48,7 +48,7 @@ static bool LoadFilesystem()
if( !g_pfnCreateInterface )
return false;
if( !g_pfnCreateInterface( "VFileSystem009", &temp ) || temp != 0 )
if( !g_pfnCreateInterface( FILESYSTEM_INTERFACE_VERSION, &temp ) || temp != 0 )
return false;
temp = -1;