Browse Source

Patched to compile on gcc2.

Ryan C. Gordon 10 years ago
parent
commit
6c072917e9
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/audio/SDL_sysaudio.h

+ 4 - 0
src/audio/SDL_sysaudio.h

@@ -99,7 +99,11 @@ typedef struct SDL_AudioDeviceItem
 {
     void *handle;
     struct SDL_AudioDeviceItem *next;
+    #if (defined(__GNUC__) && (__GNUC__ <= 2))
+    char name[1];  /* actually variable length. */
+    #else
     char name[];
+    #endif
 } SDL_AudioDeviceItem;