From 0c26b5e71a68dc20ace0529cec20cfd2cc174cbd Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 31 Dec 2012 16:29:01 -0800 Subject: [PATCH] Fixed bug 1653 - comma at the end of enum Martin Gerhardy 2012-11-30 03:07:14 PST SDL_gamecontroller.h:61:29: warning: comma at end of enumerator list [-pedantic] --- include/SDL_gamecontroller.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_gamecontroller.h b/include/SDL_gamecontroller.h index 0fde9d6f9..d65805ca3 100644 --- a/include/SDL_gamecontroller.h +++ b/include/SDL_gamecontroller.h @@ -58,7 +58,7 @@ typedef enum SDL_CONTROLLER_BINDTYPE_NONE = 0, SDL_CONTROLLER_BINDTYPE_BUTTON, SDL_CONTROLLER_BINDTYPE_AXIS, - SDL_CONTROLLER_BINDTYPE_HAT, + SDL_CONTROLLER_BINDTYPE_HAT } SDL_CONTROLLER_BINDTYPE; /** * get the sdl joystick layer binding for this controller button/axis mapping