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) { }