diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/gui.cpp | 2 | ||||
-rw-r--r-- | src/sound/sound.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index a64ff457..0d7d58e2 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -51,7 +51,9 @@ BITMAP *gui_bitmap; bool drag; DATAFILE *gui_gfx; +#ifndef WIN32 extern Sound sound; +#endif /* very internal update stuff */ int (*gui__external_slider_callback)(void *, int); diff --git a/src/sound/sound.h b/src/sound/sound.h index b0719854..95e8b7b8 100644 --- a/src/sound/sound.h +++ b/src/sound/sound.h @@ -27,8 +27,8 @@ #ifdef WIN32 #pragma warning(disable:4312) #endif -#include <SDL.h> -#include <SDL_mixer.h> +#include <SDL/SDL.h> +#include <SDL/SDL_mixer.h> #include <map> #include <string> #include <fstream> |