From 235e9d622bcd254e3e014d7c2df5bb22a9edacf0 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 19 Jan 2006 07:47:31 +0000 Subject: [PATCH] use GetChoiceInRowWithFocus instead of m_iChoiceInRowWithFocus directly --- stepmania/src/OptionRow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/OptionRow.cpp b/stepmania/src/OptionRow.cpp index c31a0bf2e5..d44e0d6884 100644 --- a/stepmania/src/OptionRow.cpp +++ b/stepmania/src/OptionRow.cpp @@ -490,7 +490,7 @@ void OptionRow::PositionUnderlines( PlayerNumber pn ) { OptionsCursor& ul = *vpUnderlines[i]; - int iChoiceWithFocus = (m_pHand->m_Def.m_layoutType == LAYOUT_SHOW_ONE_IN_ROW) ? m_iChoiceInRowWithFocus[pnTakeSelectedFrom] : i; + int iChoiceWithFocus = (m_pHand->m_Def.m_layoutType == LAYOUT_SHOW_ONE_IN_ROW) ? GetChoiceInRowWithFocus(pn) : i; /* Don't tween X movement and color changes. */ int iWidth, iX, iY;