Removed inline functions to fix OSX 10.5

This commit is contained in:
Rob Pearce 2008-12-26 08:26:34 +00:00
parent a2b976cc4e
commit aec0c3b8b5
1 changed files with 3 additions and 3 deletions

View File

@ -2740,7 +2740,7 @@ int needscollisions(int id) {
} }
#ifdef OPENGL #ifdef OPENGL
inline void drawpixel16(SDL_Surface *screen, int x, int y, SDL_Color c) void drawpixel16(SDL_Surface *screen, int x, int y, SDL_Color c)
{ {
Uint8 *bufp; Uint8 *bufp;
@ -2761,7 +2761,7 @@ inline void drawpixel16(SDL_Surface *screen, int x, int y, SDL_Color c)
#else #else
inline void drawpixel16(SDL_Surface *s, int x, int y, SDL_Color c) void drawpixel16(SDL_Surface *s, int x, int y, SDL_Color c)
{ {
Uint16 *bufp; Uint16 *bufp;
@ -2777,7 +2777,7 @@ inline void drawpixel16(SDL_Surface *s, int x, int y, SDL_Color c)
#endif #endif
inline void drawpixel32(SDL_Surface *s, int x, int y, SDL_Color c) void drawpixel32(SDL_Surface *s, int x, int y, SDL_Color c)
{ {
Uint32 *bufp; Uint32 *bufp;