From 892fa90a5905c42a103ce97f6bcf5cd5ca08e3a0 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 6 Mar 2006 04:23:08 +0000 Subject: [PATCH] change logic from "extends beyond end" to "width > max width" (preparatory) (fixup) --- 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 3854ae6efb..bff5526567 100644 --- a/stepmania/src/OptionRow.cpp +++ b/stepmania/src/OptionRow.cpp @@ -313,7 +313,7 @@ void OptionRow::InitText() bt.RunCommands( m_pParentType->ITEMS_ON_COMMAND ); /* Figure out the width of the row. */ - float fWidth = m_pParentType->ITEMS_START_X; + float fWidth = 0; for( unsigned c=0; cm_Def.m_vsChoices.size(); c++ ) { RString sText = m_pHand->m_Def.m_vsChoices[c];