From 547c086ac8b5e0e9323c6b476cbeb23c781cdfb7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 30 Nov 2004 09:03:46 +0000 Subject: [PATCH] cleanup --- stepmania/src/RageInput.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/stepmania/src/RageInput.cpp b/stepmania/src/RageInput.cpp index 6dc600669c..fa96dc0b47 100644 --- a/stepmania/src/RageInput.cpp +++ b/stepmania/src/RageInput.cpp @@ -14,11 +14,9 @@ RageInput::RageInput( CString drivers ) /* Init optional devices. */ MakeInputHandlers(drivers,Devices); - /* If no input devices are loaded, the user won't be able to input anything. - * That should never happen. */ - /* Temporarily commented out until Xbox is working. -Chris */ -// if(Devices.size() == 0) -// RageException::Throw("No input devices were loaded. This shouldn't happen; please file a bug."); + /* If no input devices are loaded, the user won't be able to input anything. */ + if( Devices.size() == 0 ) + LOG->Warn( "No input devices were loaded." ); } RageInput::~RageInput()