Commit 4e3fa7b9d4ab9b782813627ae71d8c62a0ddb0ad

Philipp Wiesemann 2017-01-30T22:20:20

Fixed compiler warning about comma at end of enum.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/SDL_joystick.h b/include/SDL_joystick.h
index d40432e..fb40273 100644
--- a/include/SDL_joystick.h
+++ b/include/SDL_joystick.h
@@ -83,7 +83,7 @@ typedef enum
     SDL_JOYSTICK_TYPE_DANCE_PAD,
     SDL_JOYSTICK_TYPE_GUITAR,
     SDL_JOYSTICK_TYPE_DRUM_KIT,
-    SDL_JOYSTICK_TYPE_ARCADE_PAD,
+    SDL_JOYSTICK_TYPE_ARCADE_PAD
 } SDL_JoystickType;
 
 typedef enum