From cb71d0a4c5ec63323975893c28ecc3914f0c5a61 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Mon, 16 May 2011 22:39:02 +0700 Subject: [PATCH] [splittiming] allow b, B, beat, basically anything that begins with a 'b' to be recognized as beats here. --- src/ScreenEdit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 680a9598af..11a6a3690d 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -2787,7 +2787,7 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM ) else if ( SM == SM_BackFromSpeedModeChange ) { int tmp = StringToInt(ScreenTextEntry::s_sLastAnswer ); - if( tmp == 0 ) + if( tmp == 0 || ScreenTextEntry::s_sLastAnswer.substr(0, 1) == "b" || ScreenTextEntry::s_sLastAnswer.substr(0, 1) == "B" ) { GetAppropriateTiming().SetSpeedModeAtBeat( GetBeat(), 0 ); }