Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
stupid indent
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 3, 2007
1 parent 8a3c77e commit 78e9b86
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/audio/SDL_audio.c
Expand Up @@ -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;
Expand Down
27 changes: 15 additions & 12 deletions src/audio/arts/SDL_artsaudio.c
Expand Up @@ -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) }
Expand All @@ -66,16 +66,19 @@ static struct
const char *name;
void **func;
} arts_functions[] = {
SDL_ARTS_SYM(arts_init),
SDL_ARTS_SYM(arts_free),
SDL_ARTS_SYM(arts_play_stream),
SDL_ARTS_SYM(arts_stream_set),
SDL_ARTS_SYM(arts_stream_get),
SDL_ARTS_SYM(arts_write),
SDL_ARTS_SYM(arts_close_stream),
SDL_ARTS_SYM(arts_suspended),
SDL_ARTS_SYM(arts_error_text),
/* *INDENT-OFF* */
SDL_ARTS_SYM(arts_init),
SDL_ARTS_SYM(arts_free),
SDL_ARTS_SYM(arts_play_stream),
SDL_ARTS_SYM(arts_stream_set),
SDL_ARTS_SYM(arts_stream_get),
SDL_ARTS_SYM(arts_write),
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
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down
6 changes: 3 additions & 3 deletions src/video/SDL_blit_A.c
Expand Up @@ -35,12 +35,12 @@
# define MMX_ASMBLIT 1
# define GCC_ASMBLIT 1
# elif defined(_MSC_VER) && defined(_M_IX86)
# if (_MSC_VER <= 1200)
# include <malloc.h>
# if (_MSC_VER <= 1200)
# include <malloc.h>
# if defined(_mm_free)
# define HAVE_MMINTRIN_H 1
# endif
# else /* Visual Studio > VC6 always has mmintrin.h */
# else /* Visual Studio > VC6 always has mmintrin.h */
# define HAVE_MMINTRIN_H 1
# endif
# if HAVE_MMINTRIN_H
Expand Down
2 changes: 1 addition & 1 deletion src/video/win32/SDL_win32events.c
Expand Up @@ -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);
Expand Down

0 comments on commit 78e9b86

Please sign in to comment.