From b43dabc0948d8f6b558fc0f14dac95e7d6a61d73 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 13 May 2011 09:05:32 -0400 Subject: [PATCH] [splittiming] Tap insertions are Step Time only. --- src/ScreenEdit.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 35760b7872..0b8f28af26 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -1306,6 +1306,13 @@ void ScreenEdit::InputEdit( const InputEventPlus &input, EditButton EditB ) if( input.type != IET_FIRST_PRESS ) break; // We only care about first presses + + if( !GAMESTATE->m_bIsEditorStepTiming ) + { + // TODO: broadcast a message...? + break; // Only allow steps to be hit in Step Timing. + } + int iCol = EditB - EDIT_BUTTON_COLUMN_0;