This commit is contained in:
Glenn Maynard
2006-01-17 05:38:02 +00:00
parent df5c6b2b83
commit 9e5c128980
2 changed files with 3 additions and 14 deletions
+3 -13
View File
@@ -507,18 +507,6 @@ void ScreenOptions::TweenCursor( PlayerNumber pn )
}
}
/* For "long row-style" rows, update the text on screen to contain the currently-
* focused options.
*
* This used to update a single player, but it's not always clear what that means
* when dealing with bOneChoiceForAllPlayers and disabled players, which was brittle.
* Update the whole row. */
void ScreenOptions::UpdateText( int iRow )
{
OptionRow &row = *m_pRows[iRow];
row.UpdateText();
}
void ScreenOptions::UpdateEnabledDisabled( int r )
{
OptionRow &row = *m_pRows[r];
@@ -1131,7 +1119,9 @@ void ScreenOptions::ChangeValueInRowRelative( int iRow, PlayerNumber pn, int iDe
}
}
UpdateText( iRow );
/* For "long row-style" rows, update the text on screen to contain the newly-
* focused options. */
m_pRows[iRow]->UpdateText();
// XXX: What was this NAV_THREE_KEY_MENU special case for?
if( bOneChanged )