From 9d11f814075962394645c3fc60fd9b4f625d2fb3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 25 May 2005 22:15:11 +0000 Subject: [PATCH] cleanup --- stepmania/src/arch/InputHandler/InputHandler.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/arch/InputHandler/InputHandler.h b/stepmania/src/arch/InputHandler/InputHandler.h index ab4d9df8a1..8d9cfb9c3e 100644 --- a/stepmania/src/arch/InputHandler/InputHandler.h +++ b/stepmania/src/arch/InputHandler/InputHandler.h @@ -1,5 +1,5 @@ #ifndef INPUT_HANDLER_H -#define INPUT_HANDLER_H 1 +#define INPUT_HANDLER_H /* * This is a simple class to handle special input devices. Update() @@ -27,8 +27,8 @@ class InputHandler public: InputHandler() { m_iInputsSinceUpdate = 0; } virtual ~InputHandler() { } - virtual void Update(float fDeltaTime) { } - virtual void GetDevicesAndDescriptions(vector& vDevicesOut, vector& vDescriptionsOut) = 0; + virtual void Update( float fDeltaTime ) { } + virtual void GetDevicesAndDescriptions( vector& vDevicesOut, vector& vDescriptionsOut ) = 0; /* In Windows, some devices need to be recreated if we recreate our main window. * Override this if you need to do that. */