From: Guus Sliepen Date: Sat, 25 Dec 2010 15:20:39 +0000 (+0100) Subject: Fix #includes for SDL_mutex and SDL_thread. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8d6316c47e4905119a13488dc3d506db05335f3a;p=quix0rs-blobwars.git Fix #includes for SDL_mutex and SDL_thread. --- diff --git a/src/CMedalServer.cpp b/src/CMedalServer.cpp index a0ca88b..c3ac382 100644 --- a/src/CMedalServer.cpp +++ b/src/CMedalServer.cpp @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "headers.h" -#include "SDL_mutex.h" +#include MedalServer::MedalServer() { diff --git a/src/init.h b/src/init.h index 2b6baaa..4881310 100755 --- a/src/init.h +++ b/src/init.h @@ -26,7 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #endif #include #include "headers.h" -#include "SDL_thread.h" +#include extern SDL_Surface *loadImage(const char *filename); diff --git a/src/player.h b/src/player.h index 9d5a43e..adab909 100755 --- a/src/player.h +++ b/src/player.h @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "headers.h" -#include "SDL_thread.h" +#include extern void throwAndDamageEntity(Entity *ent, int damage, int minDX, int maxDX, int DY); extern void moveEntity(Entity *ent);