forked from ValveSoftware/source-sdk-2013
VBSP now checks all search paths for an FGD file.
This commit is contained in:
@@ -2003,14 +2003,11 @@ void CMapFile::CheckForInstances( const char *pszFileName )
|
||||
char FDGPath[ MAX_PATH ];
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, "EXECUTABLE_PATH", FDGPath, sizeof( FDGPath ) ) )
|
||||
{
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, "MOD", FDGPath, sizeof( FDGPath ) ) )
|
||||
{
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, "", FDGPath, sizeof( FDGPath ) ) )
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, NULL, FDGPath, sizeof( FDGPath ) ) )
|
||||
{
|
||||
Msg( "Could not locate GameData file %s\n", GameDataFile );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
GD.Load( FDGPath );
|
||||
|
||||
|
@@ -2003,14 +2003,11 @@ void CMapFile::CheckForInstances( const char *pszFileName )
|
||||
char FDGPath[ MAX_PATH ];
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, "EXECUTABLE_PATH", FDGPath, sizeof( FDGPath ) ) )
|
||||
{
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, "MOD", FDGPath, sizeof( FDGPath ) ) )
|
||||
{
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, "", FDGPath, sizeof( FDGPath ) ) )
|
||||
if ( !g_pFullFileSystem->RelativePathToFullPath( GameDataFile, NULL, FDGPath, sizeof( FDGPath ) ) )
|
||||
{
|
||||
Msg( "Could not locate GameData file %s\n", GameDataFile );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
GD.Load( FDGPath );
|
||||
|
||||
|
Reference in New Issue
Block a user