diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index 91728192b5..9c01747238 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -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; } /* diff --git a/stepmania/src/ActorUtil.h b/stepmania/src/ActorUtil.h index 8b3af45002..a3e63b6b94 100644 --- a/stepmania/src/ActorUtil.h +++ b/stepmania/src/ActorUtil.h @@ -32,7 +32,7 @@ enum FileType FT_Lua, FT_Model, NUM_FileType, - FT_Invalid + FileType_Invalid }; const RString& FileTypeToString( FileType ft );