From 596d672d7f1513d49751e76fed86e1f0b4add36d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 28 Dec 2005 18:59:25 +0000 Subject: [PATCH] remove unused --- stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp b/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp index 955711e45b..7268ccd861 100644 --- a/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp +++ b/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp @@ -482,15 +482,12 @@ void InputHandler_DInput::InputThreadMain() /* Enable priority boosting. */ SetThreadPriorityBoost( GetCurrentThread(), FALSE ); - vector BufferedDevices, UnbufferedDevices; + vector BufferedDevices; HANDLE Handle = CreateEvent(NULL, FALSE, FALSE, NULL); for( unsigned i = 0; i < Devices.size(); ++i ) { if( !Devices[i].buffered ) - { - UnbufferedDevices.push_back( &Devices[i] ); continue; - } BufferedDevices.push_back( &Devices[i] );