From e0997258efa83f3c5f683e2a9c8e71d720bc3317 Mon Sep 17 00:00:00 2001 From: Vecais Dumais Laacis Date: Mon, 22 Jan 2007 13:34:02 +0000 Subject: [PATCH] fixed: MeterDisplay::StreamWidth was not loaded from node --- stepmania/src/MeterDisplay.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/MeterDisplay.cpp b/stepmania/src/MeterDisplay.cpp index db9db7b015..b50dbc6c5d 100644 --- a/stepmania/src/MeterDisplay.cpp +++ b/stepmania/src/MeterDisplay.cpp @@ -37,6 +37,7 @@ void MeterDisplay::LoadFromNode( const XNode* pNode ) if( !pNode->GetAttrValue( "StreamWidth", sExpr ) ) RageException::Throw( "%s: MeterDisplay: missing the \"StreamWidth\" attribute", ActorUtil::GetWhere(pNode).c_str() ); + m_fStreamWidth=StringToFloat(sExpr); { RString sStreamPath; if( !ActorUtil::GetAttrPath(pNode, "StreamPath", sStreamPath) )