From 727c6339000f99dfaabde126088df455b0f273d9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 5 Aug 2004 20:15:54 +0000 Subject: [PATCH] cleanup --- stepmania/src/UnlockSystem.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/UnlockSystem.cpp b/stepmania/src/UnlockSystem.cpp index f12e0c2b96..6ef33113f0 100644 --- a/stepmania/src/UnlockSystem.cpp +++ b/stepmania/src/UnlockSystem.cpp @@ -320,12 +320,12 @@ bool UnlockSystem::Load() if( m_SongEntries[i].m_fRequired[j] ) str += ssprintf( "%s = %f; ", g_UnlockNames[j], m_SongEntries[i].m_fRequired[j] ); - str += ssprintf( "code = %i", m_SongEntries[i].m_iCode ); + str += ssprintf( "code = %i ", m_SongEntries[i].m_iCode ); str += m_SongEntries[i].IsLocked()? "locked":"unlocked"; if( m_SongEntries[i].m_pSong ) - str += ( "(found song)" ); + str += ( " (found song)" ); if( m_SongEntries[i].m_pCourse ) - str += ( "(found course)" ); + str += ( " (found course)" ); LOG->Trace( "%s", str.c_str() ); }