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

Commit

Permalink
Fixed a bunch of compile warnings on Mac OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 1, 2008
1 parent b412649 commit cfaa0f2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/audio/SDL_audiocvt.c
Expand Up @@ -1622,7 +1622,6 @@ int
SDL_BuildWindowedSinc(SDL_AudioCVT * cvt, SDL_AudioFormat format,
unsigned int m)
{
float fScale; /* scale factor for fixed point */
float *fSinc; /* floating point sinc buffer, to be converted to fixed point */
float fc; /* cutoff frequency */
float two_pi_fc, two_pi_over_m, four_pi_over_m, m_over_two;
Expand Down Expand Up @@ -1708,6 +1707,8 @@ SDL_BuildWindowedSinc(SDL_AudioCVT * cvt, SDL_AudioFormat format,
/* Clean up */
#undef convert_fixed
SDL_stack_free(fSinc);

return 0;
}

/* This is used to reduce the resampling ratio */
Expand Down
1 change: 0 additions & 1 deletion src/audio/macosx/SDL_coreaudio.c
Expand Up @@ -418,7 +418,6 @@ prepare_audiounit(_THIS, const char *devname, int iscapture,
AURenderCallbackStruct callback;
ComponentDescription desc;
Component comp = NULL;
int use_system_device = 0;
UInt32 enableIO = 0;
const AudioUnitElement output_bus = 0;
const AudioUnitElement input_bus = 1;
Expand Down
2 changes: 2 additions & 0 deletions src/audio/macrom/SDL_romaudio.c
Expand Up @@ -89,6 +89,7 @@ mix_buffer(SDL_AudioDevice * audio, UInt8 * buffer)
DecrementAtomic((SInt32 *) & need_to_mix);
}

#ifndef __MACOSX__
static void
SNDMGR_LockDevice(_THIS)
{
Expand All @@ -114,6 +115,7 @@ SNDMGR_UnlockDevice(_THIS)
mix_buffer(this, buffer[fill_me]);
}
}
#endif // __MACOSX__

static void
callBackProc(SndChannel * chan, SndCommand * cmd_passed)
Expand Down
1 change: 1 addition & 0 deletions src/video/cocoa/SDL_cocoaevents.m
Expand Up @@ -22,6 +22,7 @@
#include "SDL_config.h"

#include "SDL_cocoavideo.h"
#include "../../events/SDL_events_c.h"

/* setAppleMenu disappeared from the headers in 10.4 */
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
Expand Down
1 change: 1 addition & 0 deletions src/video/cocoa/SDL_cocoaopengl.m
Expand Up @@ -27,6 +27,7 @@

#if SDL_VIDEO_OPENGL_CGL
#include <OpenGL/CGLTypes.h>
#include <OpenGL/OpenGL.h>

#include "SDL_loadso.h"
#include "SDL_opengl.h"
Expand Down
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11events.c
Expand Up @@ -201,7 +201,7 @@ X11_DispatchEvent(_THIS)
#ifdef X_HAVE_UTF8_STRING
if (data->ic) {
Xutf8LookupString(data->ic, &xevent.xkey, text, sizeof(text),
&keysym, status);
&keysym, &status);
}
#else
XLookupString(&xevent.xkey, text, sizeof(text), &keysym, NULL);
Expand Down
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11video.h
Expand Up @@ -69,7 +69,7 @@ typedef struct SDL_VideoData
int numwindows;
SDL_WindowData **windowlist;
int windowlistlength;
int *mouse;
int mouse;
int keyboard;
Atom WM_DELETE_WINDOW;
SDL_scancode key_layout[256];
Expand Down

0 comments on commit cfaa0f2

Please sign in to comment.