Fix RageFile, use RageFile. Const fix in LyricsLoader.

This commit is contained in:
Steve Checkoway
2003-11-30 06:20:25 +00:00
parent 2da10fc9eb
commit b125e3d980
11 changed files with 216 additions and 173 deletions
+6
View File
@@ -46,6 +46,12 @@ void CollapsePath( CString &sPath )
sPath = join( SLASH, as );
}
RageFile::RageFile(const CString& path, const char *mode)
{
mFP = NULL;
Open(path, mode);
}
bool RageFile::Open(const CString& path, const char *mode)
{
Close();