remove unused parameter

This commit is contained in:
Glenn Maynard
2005-12-18 22:53:47 +00:00
parent 7faaa73afd
commit 29603ba7db
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -167,7 +167,7 @@ void InputFilter::Update( float fDeltaTime )
{ {
RageTimer now; RageTimer now;
INPUTMAN->Update( fDeltaTime ); INPUTMAN->Update();
/* Make sure that nothing gets inserted while we do this, to prevent /* Make sure that nothing gets inserted while we do this, to prevent
* things like "key pressed, key release, key repeat". */ * things like "key pressed, key release, key repeat". */
+1 -1
View File
@@ -38,7 +38,7 @@ void RageInput::LoadDrivers()
LOG->Warn( "No input devices were loaded." ); LOG->Warn( "No input devices were loaded." );
} }
void RageInput::Update( float fDeltaTime ) void RageInput::Update()
{ {
/* Update optional devices. */ /* Update optional devices. */
for( unsigned i = 0; i < m_pDevices.size(); ++i ) for( unsigned i = 0; i < m_pDevices.size(); ++i )
+1 -1
View File
@@ -15,7 +15,7 @@ public:
~RageInput(); ~RageInput();
void LoadDrivers(); void LoadDrivers();
void Update( float fDeltaTime ); void Update();
bool DevicesChanged(); bool DevicesChanged();
void GetDevicesAndDescriptions( vector<InputDevice>& vDevicesOut, vector<CString>& vsDescriptionsOut ); void GetDevicesAndDescriptions( vector<InputDevice>& vDevicesOut, vector<CString>& vsDescriptionsOut );
void WindowReset(); void WindowReset();