mirror of
https://github.com/yawut/SDL.git
synced 2026-06-20 11:31:41 -05:00
Patched test apps to compile with C89 compilers (thanks, Axel!).
Fixes Bugzilla #1772.
This commit is contained in:
parent
cf94d2de94
commit
2bcbb0d199
|
|
@ -36,6 +36,8 @@ print_devices(int iscapture)
|
|||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
int n;
|
||||
|
||||
/* Load the SDL library */
|
||||
if (SDL_Init(SDL_INIT_AUDIO) < 0) {
|
||||
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
||||
|
|
@ -43,7 +45,7 @@ main(int argc, char **argv)
|
|||
}
|
||||
|
||||
/* Print available audio drivers */
|
||||
int n = SDL_GetNumAudioDrivers();
|
||||
n = SDL_GetNumAudioDrivers();
|
||||
if (n == 0) {
|
||||
printf("No built-in audio drivers\n\n");
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -42,13 +42,14 @@ main(int argc, char *argv[])
|
|||
"NO",
|
||||
"hand",
|
||||
};
|
||||
SDL_assert(SDL_arraysize(cursorNames) == SDL_NUM_SYSTEM_CURSORS);
|
||||
|
||||
int i, done;
|
||||
SDL_Event event;
|
||||
int system_cursor = -1;
|
||||
SDL_Cursor *cursor = NULL;
|
||||
|
||||
SDL_assert(SDL_arraysize(cursorNames) == SDL_NUM_SYSTEM_CURSORS);
|
||||
|
||||
/* Initialize test framework */
|
||||
state = SDLTest_CommonCreateState(argv, SDL_INIT_VIDEO);
|
||||
if (!state) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user