stupid indent
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402404
This commit is contained in:
parent
0247379cf4
commit
957d8bf377
4 changed files with 20 additions and 17 deletions
|
@ -555,7 +555,7 @@ prepare_audiospec(const SDL_AudioSpec * orig, SDL_AudioSpec * prepared)
|
|||
switch (orig->channels) {
|
||||
case 0:{
|
||||
const char *env = SDL_getenv("SDL_AUDIO_CHANNELS");
|
||||
if ((!env) || ((prepared->channels = (Uint8)SDL_atoi(env)) == 0)) {
|
||||
if ((!env) || ((prepared->channels = (Uint8) SDL_atoi(env)) == 0)) {
|
||||
prepared->channels = 2; /* a reasonable default */
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -57,7 +57,7 @@ static int (*SDL_NAME(arts_stream_get)) (arts_stream_t s,
|
|||
static int (*SDL_NAME(arts_write)) (arts_stream_t s, const void *buffer,
|
||||
int count);
|
||||
static void (*SDL_NAME(arts_close_stream)) (arts_stream_t s);
|
||||
static int (*SDL_NAME(arts_suspended))(void);
|
||||
static int (*SDL_NAME(arts_suspended)) (void);
|
||||
static const char *(*SDL_NAME(arts_error_text)) (int errorcode);
|
||||
|
||||
#define SDL_ARTS_SYM(x) { #x, (void **) (char *) &SDL_NAME(x) }
|
||||
|
@ -66,7 +66,8 @@ static struct
|
|||
const char *name;
|
||||
void **func;
|
||||
} arts_functions[] = {
|
||||
SDL_ARTS_SYM(arts_init),
|
||||
/* *INDENT-OFF* */
|
||||
SDL_ARTS_SYM(arts_init),
|
||||
SDL_ARTS_SYM(arts_free),
|
||||
SDL_ARTS_SYM(arts_play_stream),
|
||||
SDL_ARTS_SYM(arts_stream_set),
|
||||
|
@ -75,7 +76,9 @@ SDL_ARTS_SYM(arts_init),
|
|||
SDL_ARTS_SYM(arts_close_stream),
|
||||
SDL_ARTS_SYM(arts_suspended),
|
||||
SDL_ARTS_SYM(arts_error_text),
|
||||
/* *INDENT-ON* */
|
||||
};
|
||||
|
||||
#undef SDL_ARTS_SYM
|
||||
|
||||
static void
|
||||
|
@ -263,7 +266,7 @@ ARTS_OpenDevice(_THIS, const char *devname, int iscapture)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if ( ! SDL_NAME(arts_suspended)() ) {
|
||||
if (!SDL_NAME(arts_suspended) ()) {
|
||||
ARTS_CloseDevice(this);
|
||||
SDL_SetError("ARTS can not open audio device");
|
||||
return 0;
|
||||
|
@ -339,7 +342,7 @@ ARTS_Init(SDL_AudioDriverImpl * impl)
|
|||
}
|
||||
|
||||
/* Play a stream so aRts doesn't crash */
|
||||
if ( SDL_NAME(arts_suspended)() ) {
|
||||
if (SDL_NAME(arts_suspended) ()) {
|
||||
arts_stream_t stream;
|
||||
stream = SDL_NAME(arts_play_stream) (44100, 16, 2, "SDL");
|
||||
SDL_NAME(arts_write) (stream, "", 0);
|
||||
|
|
|
@ -634,7 +634,7 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|||
* DefWindowProc to process it.
|
||||
*/
|
||||
if (xbuttonval > 0) {
|
||||
return(TRUE);
|
||||
return (TRUE);
|
||||
}
|
||||
}
|
||||
return (0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue