Patched to compile on gcc2.
parent
06e85acd72
commit
6c072917e9
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue