diff src/audio/SDL_sysaudio.h @ 2060:866052b01ee5

indent is evil
author Sam Lantinga <slouken@libsdl.org>
date Sat, 28 Oct 2006 16:48:03 +0000
parents 5f6550e5184f
children f39a056aec8b f8f68f47285a
line wrap: on
line diff
--- a/src/audio/SDL_sysaudio.h	Sat Oct 28 16:41:54 2006 +0000
+++ b/src/audio/SDL_sysaudio.h	Sat Oct 28 16:48:03 2006 +0000
@@ -33,8 +33,8 @@
 
 typedef struct SDL_AudioDriverImpl
 {
-    int (*DetectDevices)(int iscapture);
-    const char *(*GetDeviceName)(int index, int iscapture);
+    int (*DetectDevices) (int iscapture);
+    const char *(*GetDeviceName) (int index, int iscapture);
     int (*OpenDevice) (_THIS, const char *devname, int iscapture);
     void (*ThreadInit) (_THIS); /* Called by audio thread at start */
     void (*WaitDevice) (_THIS);
@@ -107,8 +107,8 @@
 {
     const char *name;
     const char *desc;
-    int (*init) (SDL_AudioDriverImpl *impl);
-    int demand_only:1;  /* 1==request explicitly, or it won't be available. */
+    int (*init) (SDL_AudioDriverImpl * impl);
+    int demand_only:1;          /* 1==request explicitly, or it won't be available. */
 } AudioBootStrap;
 
 #endif /* _SDL_sysaudio_h */