continue phasing out BASE_PATH and SLASH

This commit is contained in:
Glenn Maynard
2003-12-10 09:44:16 +00:00
parent cd7ab704cb
commit e9ae2c0803
13 changed files with 40 additions and 44 deletions
+2 -2
View File
@@ -68,7 +68,7 @@ int RageFileObj::GetFileSize()
int RageFileDriver::GetPathValue( const CString &path )
{
vector<CString> parts;
split( path, SLASH, parts, true );
split( path, "/", parts, true );
CString PartialPath;
@@ -76,7 +76,7 @@ int RageFileDriver::GetPathValue( const CString &path )
{
PartialPath += parts[i];
if( i+1 < parts.size() )
PartialPath += SLASH;
PartialPath += "/";
const RageFileManager::FileType Type = GetFileType( PartialPath );
switch( Type )