From 60e1cc4ada408d0405c50404d78c435c90e69a3f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 10 Sep 2004 08:19:48 +0000 Subject: [PATCH] fix warnings --- stepmania/src/RageInputDevice.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageInputDevice.h b/stepmania/src/RageInputDevice.h index 5922ed1519..cb692e046d 100644 --- a/stepmania/src/RageInputDevice.h +++ b/stepmania/src/RageInputDevice.h @@ -292,8 +292,8 @@ public: RageTimer ts; - DeviceInput(): device(DEVICE_NONE), button(-1), ts(RageZeroTimer), level(0) { } - DeviceInput( InputDevice d, int b, float l=0 ): device(d), button(b), level(l), ts(RageZeroTimer) { } + DeviceInput(): device(DEVICE_NONE), button(-1), level(0), ts(RageZeroTimer) { } + DeviceInput( InputDevice d, int b, float l=0 ): device(d), level(l), button(b), ts(RageZeroTimer) { } DeviceInput( InputDevice d, int b, float l, const RageTimer &t ): device(d), button(b), level(l), ts(t) { }