From 7fa4eece25583d255b1210e47b218a807d0b3882 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 1 Mar 2014 22:27:13 -0500 Subject: [PATCH] Fixed a typo in a comment. --- src/joystick/windows/SDL_dxjoystick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/joystick/windows/SDL_dxjoystick.c b/src/joystick/windows/SDL_dxjoystick.c index 4e763aa0d..7aa7d3307 100644 --- a/src/joystick/windows/SDL_dxjoystick.c +++ b/src/joystick/windows/SDL_dxjoystick.c @@ -782,7 +782,7 @@ EnumXInputDevices(JoyStick_DeviceData **pContext) XINPUT_CAPABILITIES capabilities; if (XINPUTGETCAPABILITIES(userid, XINPUT_FLAG_GAMEPAD, &capabilities) == ERROR_SUCCESS) { /* Current version of XInput mistakenly returns 0 as the Type. Ignore it and ensure the subtype is a gamepad. */ - /* !!! FIXME: we might want to support steering wheels or guitars or whatever laster. */ + /* !!! FIXME: we might want to support steering wheels or guitars or whatever later. */ if (capabilities.SubType == XINPUT_DEVSUBTYPE_GAMEPAD) { AddXInputDevice(userid, pContext); }