trace before LoadFromSMFile instead of after

This commit is contained in:
Glenn Maynard
2002-08-22 22:48:04 +00:00
parent dae5c84134
commit 9881034aae
+2 -1
View File
@@ -306,9 +306,10 @@ bool Song::LoadFromSongDir( CString sDir )
{
if( !DoesFileExist(GetCacheFilePath()) )
goto load_without_cache;
LOG->Trace( "Loading '%s' from cache file '%s'.", m_sSongDir, GetCacheFilePath() );
LoadFromSMFile( GetCacheFilePath() );
LOG->Trace( "Loading '%s' from cache file '%s'.", m_sSongDir, GetCacheFilePath() );
return true;
}