FileType_Invalid

This commit is contained in:
Glenn Maynard
2006-10-14 02:59:24 +00:00
parent 633adf30b7
commit 394950b1eb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -634,7 +634,7 @@ FileType ActorUtil::GetFileType( const RString &sPath )
return FT_Directory;
/* Do this last, to avoid the IsADirectory in most cases. */
else if( IsADirectory(sPath) ) return FT_Directory;
else return FT_Invalid;
else return FileType_Invalid;
}
/*
+1 -1
View File
@@ -32,7 +32,7 @@ enum FileType
FT_Lua,
FT_Model,
NUM_FileType,
FT_Invalid
FileType_Invalid
};
const RString& FileTypeToString( FileType ft );