This commit is contained in:
Glenn Maynard
2006-09-08 18:54:01 +00:00
parent 3fc0d75570
commit 9e3f9f6fb3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -332,7 +332,7 @@ void InputFilter::GetInputEvents( vector<InputEvent> &array )
array.swap( queue ); array.swap( queue );
} }
void InputFilter::GetPressedButtons( vector<DeviceInput> &array ) void InputFilter::GetPressedButtons( vector<DeviceInput> &array ) const
{ {
LockMut(*queuemutex); LockMut(*queuemutex);
array = g_CurrentState; array = g_CurrentState;
+1 -1
View File
@@ -54,7 +54,7 @@ public:
RString GetButtonComment( const DeviceInput &di ) const; RString GetButtonComment( const DeviceInput &di ) const;
void GetInputEvents( vector<InputEvent> &aEventOut ); void GetInputEvents( vector<InputEvent> &aEventOut );
void GetPressedButtons( vector<DeviceInput> &array ); void GetPressedButtons( vector<DeviceInput> &array ) const;
private: private:
void CheckButtonChange( ButtonState &bs, DeviceInput di, const RageTimer &now ); void CheckButtonChange( ButtonState &bs, DeviceInput di, const RageTimer &now );