From 7483a249b4b15d695ebd9e272e57b6ef2ced9ac4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 14 Jul 2003 06:21:30 +0000 Subject: [PATCH] add a ctor --- stepmania/src/RageInputDevice.h | 1 + 1 file changed, 1 insertion(+) 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 ) {