From 240666b390b676cdb2aacfbd75afb47dc01a6775 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 25 Jul 2005 04:47:51 +0000 Subject: [PATCH] const cleanup --- stepmania/src/ScreenSelectMaster.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenSelectMaster.cpp b/stepmania/src/ScreenSelectMaster.cpp index 6300a07f65..e1959b3a0d 100644 --- a/stepmania/src/ScreenSelectMaster.cpp +++ b/stepmania/src/ScreenSelectMaster.cpp @@ -683,7 +683,7 @@ void ScreenSelectMaster::MenuStart( PlayerNumber pn ) if( !ProcessMenuStart( pn ) ) return; - GameCommand &mc = m_aGameCommands[m_iChoice[pn]]; + const GameCommand &mc = m_aGameCommands[m_iChoice[pn]]; /* If no options are playable, then we're just waiting for one to become available. * If any options are playable, then the selection must be playable. */ @@ -701,7 +701,7 @@ void ScreenSelectMaster::MenuStart( PlayerNumber pn ) mc.ApplyToAllPlayers(); return; } - + float fSecs = 0; bool bAllDone = true; if( (bool)SHARED_SELECTION || GetCurrentPage() == PAGE_2 )