From c0a63736938da3db8308d6d913020cd57287c2b0 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 17 Mar 2007 03:24:00 +0000 Subject: [PATCH] fix rate in editor --- stepmania/src/ScreenEdit.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index 5ed6c56dd4..c4163de7da 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -772,7 +772,9 @@ void ScreenEdit::Init() m_soundSave.Load( THEME->GetPathS("ScreenEdit","save") ); m_GameplayAssist.Init(); - m_soundMusic.Load( m_pSong->GetMusicPath() ); + RageSoundLoadParams params; + params.m_bSupportRateChanging = true; + m_soundMusic.Load( m_pSong->GetMusicPath(), false, ¶ms ); this->HandleScreenMessage( SM_UpdateTextInfo ); m_bTextInfoNeedsUpdate = true;