# HG changeset patch # User Eli Gottlieb # Date 1275600100 14400 # Node ID 590e680cc4e48eb845f326146e9846ac4852b021 # Parent 37e9f8154ac433b8aeb653b96f48fa9201e92fd2 Fixed up new functions and files so that they build as part of SDL. diff -r 37e9f8154ac4 -r 590e680cc4e4 include/SDL_poly.h --- a/include/SDL_poly.h Thu Jun 03 16:21:04 2010 -0400 +++ b/include/SDL_poly.h Thu Jun 03 17:21:40 2010 -0400 @@ -68,7 +68,7 @@ * * \return SDL_TRUE if the polygons are equal, SDL_FALSE otherwise. */ -extern DECLSPEC SDL_bool SDLCALL SDL_PolyEquals(const SDL_Poly *A,const SDL_Poly *A); +extern DECLSPEC SDL_bool SDLCALL SDL_PolyEquals(const SDL_Poly *A,const SDL_Poly *B); /** * \brief Determine whether two rectangles intersect. diff -r 37e9f8154ac4 -r 590e680cc4e4 include/SDL_video.h --- a/include/SDL_video.h Thu Jun 03 16:21:04 2010 -0400 +++ b/include/SDL_video.h Thu Jun 03 17:21:40 2010 -0400 @@ -1256,7 +1256,7 @@ * * \return 0 on success, or -1 if there is no rendering context current. */ -extern DECLSPEC int SDLCALL SDL_RenderDrawEllipses(const SDL_Ellipse ** ellipse, int count); +extern DECLSPEC int SDLCALL SDL_RenderDrawEllipses(const SDL_Ellipse * ellipse, int count); /** * \brief Fill an ellipse on the current rendering target with the drawing color. diff -r 37e9f8154ac4 -r 590e680cc4e4 src/video/SDL_video.c --- a/src/video/SDL_video.c Thu Jun 03 16:21:04 2010 -0400 +++ b/src/video/SDL_video.c Thu Jun 03 17:21:40 2010 -0400 @@ -2546,7 +2546,7 @@ return SDL_RenderFillEllipses(&ellipse,1); } -int SDL_RenderFillEllipses(const SDL_Ellipse ** ellipse, int count) { +int SDL_RenderFillEllipses(const SDL_Ellipse * ellipse, int count) { return -1; }