remove Down

This commit is contained in:
Glenn Maynard
2006-12-26 23:11:10 +00:00
parent a6a1801b58
commit 4b937130c9
2 changed files with 2 additions and 2 deletions
@@ -14,7 +14,7 @@ void InputHandler::UpdateTimer()
m_iInputsSinceUpdate = 0;
}
void InputHandler::ButtonPressed( DeviceInput di, bool Down )
void InputHandler::ButtonPressed( DeviceInput di )
{
if( di.ts.IsZero() )
{
@@ -62,7 +62,7 @@ protected:
* happen, you need to explicitly call di.ts.SetZero().
*
* If the timestamp is set, it'll be left alone. */
void ButtonPressed( DeviceInput di, bool Down = false );
void ButtonPressed( DeviceInput di );
/* Call this at the end of polling input. */
void UpdateTimer();