diff options
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/graphics.h | 4 | ||||
-rw-r--r-- | src/render/sdl2softwaregraphics.cpp | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h index aad3c2bed..12df83aef 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -32,6 +32,10 @@ #include <guichan/color.hpp> #include <guichan/graphics.hpp> +#ifdef USE_SDL2 +#include <SDL_render.h> +#endif + #include "localconsts.h" class Image; diff --git a/src/render/sdl2softwaregraphics.cpp b/src/render/sdl2softwaregraphics.cpp index c60961a40..5ba4ab693 100644 --- a/src/render/sdl2softwaregraphics.cpp +++ b/src/render/sdl2softwaregraphics.cpp @@ -36,6 +36,8 @@ #include "utils/sdlcheckutils.h" +#include <guichan/sdl/sdlpixel.hpp> + #include "debug.h" #if SDL_BYTEORDER == SDL_LIL_ENDIAN |