From 2a00b0a23e1656b41e0575a3bceb0ec07250688e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 15 Nov 2003 00:27:15 +0000 Subject: [PATCH] different difficulty metrics for the editor --- stepmania/src/EditMenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/EditMenu.cpp b/stepmania/src/EditMenu.cpp index 6f0702c3dd..076ff02fb0 100644 --- a/stepmania/src/EditMenu.cpp +++ b/stepmania/src/EditMenu.cpp @@ -91,12 +91,12 @@ EditMenu::EditMenu() m_SongTextBanner.SetXY( SONG_TEXT_BANNER_X, SONG_TEXT_BANNER_Y ); this->AddChild( &m_SongTextBanner ); - m_Meter.SetName( "DifficultyMeter" ); + m_Meter.SetName( "EditDifficultyMeter", "DifficultyMeter" ); m_Meter.SetXY( METER_X, METER_Y ); m_Meter.Load(); this->AddChild( &m_Meter ); - m_SourceMeter.SetName( "DifficultyMeter" ); + m_SourceMeter.SetName( "EditDifficultyMeter", "DifficultyMeter" ); m_SourceMeter.SetXY( SOURCE_METER_X, SOURCE_METER_Y ); m_SourceMeter.Load(); this->AddChild( &m_SourceMeter );