re-add meter number on options screen

This commit is contained in:
Chris Danford
2005-03-17 06:23:16 +00:00
parent 800bbfbb70
commit 46443085fd
+2
View File
@@ -291,6 +291,7 @@ public:
Trail* pTrail = vTrails[i];
CString s = CourseDifficultyToThemedString( pTrail->m_CourseDifficulty );
s += ssprintf( " %d", pTrail->GetMeter() );
defOut.choices.push_back( s );
GameCommand mc;
mc.m_pTrail = pTrail;
@@ -311,6 +312,7 @@ public:
s = pSteps->GetDescription();
else
s = DifficultyToThemedString( pSteps->GetDifficulty() );
s += ssprintf( " %d", pSteps->GetMeter() );
defOut.choices.push_back( s );
GameCommand mc;
mc.m_pSteps = pSteps;