From 01f8ad22c73fc789d6888a30b9e2fa043ad0e43a Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Wed, 23 Feb 2011 18:57:18 -0600 Subject: [PATCH] small whitespace cleanup --- src/archutils/Darwin/JoystickDevice.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/archutils/Darwin/JoystickDevice.h b/src/archutils/Darwin/JoystickDevice.h index 108791262d..ae5de046ce 100644 --- a/src/archutils/Darwin/JoystickDevice.h +++ b/src/archutils/Darwin/JoystickDevice.h @@ -16,7 +16,7 @@ struct Joystick int ry_min, ry_max; int rz_min, rz_max; int hat_min, hat_max; - + Joystick(); }; @@ -24,20 +24,19 @@ class JoystickDevice : public HIDDevice { private: vector m_vSticks; - + protected: bool AddLogicalDevice( int usagePage, int usage ); void AddElement( int usagePage, int usage, IOHIDElementCookie cookie, const CFDictionaryRef properties ); void Open(); bool InitDevice( int vid, int pid ); - + public: void GetButtonPresses( vector& vPresses, IOHIDElementCookie cookie, int value, const RageTimer& now ) const; int AssignIDs( InputDevice startID ); void GetDevicesAndDescriptions( vector& vDevices ) const; }; - #endif /*