From 8e9aff2d21bccc5fc62640aef7ab2c2517e3e673 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 5 Aug 2005 16:21:00 +0000 Subject: [PATCH] compile fix --- stepmania/src/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 480198569e..41f30c3eee 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -1810,7 +1810,7 @@ StepsType Profile::GetLastPlayedStepsType() const { if( m_vRecentStepsScores.empty() ) return STEPS_TYPE_INVALID; - return m_vRecentStepsScores.back().stepsID.GetStepsType(); + return m_vRecentStepsScores.back().stepsID->GetStepsType(); } const Profile::HighScoresForASong *Profile::GetHighScoresForASong( const SongID& songID ) const