shithub: cstory

Download patch

ref: 37e29f330f4027bde87c9174f9837f0cd21f0057
parent: e6e780f3d254eddd135619744c1c996ae2ad72dc
author: Gabriel Ravier <gabravier@gmail.com>
date: Wed May 8 04:54:53 EDT 2019

Fix comments in Input.cpp

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>

--- a/src/Input.cpp
+++ b/src/Input.cpp
@@ -14,11 +14,11 @@
 
 #define JOYSTICK_DEADZONE 10000
 
-SDL_Joystick *joystick; //This may be a name that was given by Simon, but it fits the rest of Pixel's names so it's fine.
+SDL_Joystick *joystick; // This was probably a name that was given by Simon, but it fits the rest of Pixel's names so it's fine.
 
 void ReleaseDirectInput()
 {
-	//Close opened joystick (if exists)
+	// Close opened joystick (if exists)
 	if (joystick)
 	{
 		SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
@@ -29,7 +29,7 @@
 
 bool InitDirectInput()
 {
-	//Open first available joystick
+	// Open first available joystick
 	SDL_InitSubSystem(SDL_INIT_JOYSTICK);
 
 	for (int i = 0; i < SDL_NumJoysticks(); i++)
@@ -36,7 +36,7 @@
 	{
 		joystick = SDL_JoystickOpen(i);
 
-		//Break as soon as a joystick is properly opened
+		// Break as soon as a joystick is properly opened
 		if (joystick)
 			break;
 	}
@@ -46,7 +46,7 @@
 
 bool GetJoystickStatus(JOYSTICK_STATUS *pStatus)
 {
-	//Clear status
+	// Clear status
 	memset(pStatus, 0, sizeof(JOYSTICK_STATUS));
 
 	if (joystick)