From e400e1119560fe2b0fc3175a589b99264ff3086e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 10 Jun 2003 21:54:12 +0000 Subject: [PATCH] don't send player steps in the editor when autoplay is on --- stepmania/src/ScreenEdit.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index ba86188dbb..f9f9bd0d6f 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -1052,7 +1052,8 @@ void ScreenEdit::InputPlay( const DeviceInput& DeviceI, const InputEventType typ switch( StyleI.player ) { case PLAYER_1: - m_Player.Step( StyleI.col ); + if( !PREFSMAN->m_bAutoPlay ) + m_Player.Step( StyleI.col ); return; }