Mercurial > sdl-ios-xcode
changeset 3836:7dc7327cd626 SDL-ryan-multiple-audio-device
Patched to build on pre-C99 compilers.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 08 Oct 2006 00:55:30 +0000 |
parents | 84aa539627c8 |
children | 7c9663fb0860 |
files | test/testaudioinfo.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/test/testaudioinfo.c Sun Oct 08 00:05:22 2006 +0000 +++ b/test/testaudioinfo.c Sun Oct 08 00:55:30 2006 +0000 @@ -28,8 +28,8 @@ if (n == 0) { printf("No built-in audio drivers\n\n"); } else { + int i; printf("Built-in audio drivers:\n"); - int i; for (i = 0; i < n; ++i) { printf(" %s\n", SDL_GetAudioDriver(i)); }