From 9881034aae1891b660ce1acf645080e724c11ce4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 22 Aug 2002 22:48:04 +0000 Subject: [PATCH] trace before LoadFromSMFile instead of after --- stepmania/src/Song.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 7b34f1eaae..b3431b9e5d 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -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; }