From 852de9484b2d7dd8728cb5bbeab7d1578293a992 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Oct 2006 05:37:35 +0000 Subject: [PATCH] ComboGraph -> GraphDisplay --- stepmania/src/GraphDisplay.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stepmania/src/GraphDisplay.cpp b/stepmania/src/GraphDisplay.cpp index 38d1e04afc..73652a4a59 100644 --- a/stepmania/src/GraphDisplay.cpp +++ b/stepmania/src/GraphDisplay.cpp @@ -157,13 +157,13 @@ void GraphDisplay::LoadFromNode( const XNode* pNode ) const XNode *pChild = pNode->GetChild( "Body" ); if( pChild == NULL ) - RageException::Throw( "%s: ComboGraph: missing the node \"Body\"", ActorUtil::GetWhere(pNode).c_str() ); + RageException::Throw( "%s: GraphDisplay: missing the node \"Body\"", ActorUtil::GetWhere(pNode).c_str() ); m_pGraphBody->LoadFromNode( pChild ); this->AddChild( m_pGraphBody ); pChild = pNode->GetChild( "Texture" ); if( pChild == NULL ) - RageException::Throw( "%s: ComboGraph: missing the node \"Texture\"", ActorUtil::GetWhere(pNode).c_str() ); + RageException::Throw( "%s: GraphDisplay: missing the node \"Texture\"", ActorUtil::GetWhere(pNode).c_str() ); m_sprTexture.LoadActorFromNode( pChild, this ); m_size.x = m_sprTexture->GetUnzoomedWidth(); m_size.y = m_sprTexture->GetUnzoomedHeight(); @@ -171,18 +171,18 @@ void GraphDisplay::LoadFromNode( const XNode* pNode ) pChild = pNode->GetChild( "Line" ); if( pChild == NULL ) - RageException::Throw( "%s: ComboGraph: missing the node \"Line\"", ActorUtil::GetWhere(pNode).c_str() ); + RageException::Throw( "%s: GraphDisplay: missing the node \"Line\"", ActorUtil::GetWhere(pNode).c_str() ); m_pGraphLine->LoadFromNode( pChild ); this->AddChild( m_pGraphLine ); pChild = pNode->GetChild( "SongBoundary" ); if( pChild == NULL ) - RageException::Throw( "%s: ComboGraph: missing the node \"SongBoundary\"", ActorUtil::GetWhere(pNode).c_str() ); + RageException::Throw( "%s: GraphDisplay: missing the node \"SongBoundary\"", ActorUtil::GetWhere(pNode).c_str() ); m_sprSongBoundary.LoadActorFromNode( pChild, this ); pChild = pNode->GetChild( "Barely" ); if( pChild == NULL ) - RageException::Throw( "%s: ComboGraph: missing the node \"Barely\"", ActorUtil::GetWhere(pNode).c_str() ); + RageException::Throw( "%s: GraphDisplay: missing the node \"Barely\"", ActorUtil::GetWhere(pNode).c_str() ); m_sprJustBarely.LoadActorFromNode( pChild, this ); }