From 407de639576aef90b52c60e763f2cd2f7eaa7205 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 14 Aug 2004 06:40:17 +0000 Subject: [PATCH] make sound on insert/delete beat --- 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 f1ab249984..d6f5b3256c 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -1172,6 +1172,7 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ HandleAreaMenuChoice( shift_pauses_forward, NULL ); else HandleAreaMenuChoice( insert_and_shift, NULL ); + SCREENMAN->PlayInvalidSound(); break; case SDLK_DELETE: if( INPUTFILTER->IsBeingPressed(DeviceInput(DEVICE_KEYBOARD,SDLK_LCTRL)) || @@ -1179,7 +1180,7 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ HandleAreaMenuChoice( shift_pauses_backward, NULL ); else HandleAreaMenuChoice( delete_and_shift, NULL ); - + SCREENMAN->PlayInvalidSound(); break; } }