From 6641cec9f92ab51a7e3e536b917c086d221c3957 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 26 Sep 2006 19:55:35 +0000 Subject: [PATCH] stop being unique --- stepmania/src/RoomWheel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RoomWheel.cpp b/stepmania/src/RoomWheel.cpp index 083c0da30f..591229b6f3 100644 --- a/stepmania/src/RoomWheel.cpp +++ b/stepmania/src/RoomWheel.cpp @@ -60,13 +60,13 @@ void RoomWheelItem::Load( RString sType ) DESC_WIDTH .Load(sType,"DescWidth"); TEXT_WIDTH .Load(sType,"TextWidth"); - m_text.SetHorizAlignString("left"); + m_text.SetHorizAlign( align_left ); m_text.SetMaxWidth(TEXT_WIDTH); m_Desc.SetName( "Desc" ); ActorUtil::LoadAllCommands( m_Desc, "RoomWheelItem" ); m_Desc.LoadFromFont( THEME->GetPathF("RoomWheel","text") ); - m_Desc.SetHorizAlignString("left"); + m_Desc.SetHorizAlign( align_left ); m_Desc.SetShadowLength( 0 ); m_Desc.SetMaxWidth( DESC_WIDTH ); m_Desc.SetXY( DESC_X, DESC_Y);