diff --git a/stepmania/src/RageInputDevice.h b/stepmania/src/RageInputDevice.h index c97c11eea3..0c1f12b501 100644 --- a/stepmania/src/RageInputDevice.h +++ b/stepmania/src/RageInputDevice.h @@ -65,6 +65,7 @@ public: DeviceInput() { device=DEVICE_NONE; button=-1; ts.SetZero(); } DeviceInput( InputDevice d, int b ) { device=d; button=b; ts.SetZero(); } + DeviceInput( InputDevice d, int b, const RageTimer &t ) { device=d; button=b; ts = t; } bool operator==( const DeviceInput &other ) {