diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/atlasmanager.cpp | 4 | ||||
-rw-r--r-- | src/resources/image.h | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/resources/atlasmanager.cpp b/src/resources/atlasmanager.cpp index 0f7565ecd..1d7147d72 100644 --- a/src/resources/atlasmanager.cpp +++ b/src/resources/atlasmanager.cpp @@ -25,9 +25,9 @@ #include "resources/atlasmanager.h" #include "client.h" -#include "graphics.h" #include "graphicsmanager.h" #include "logger.h" +#include "sdlgraphics.h" #include "utils/mathutils.h" #include "utils/physfsrwops.h" @@ -227,7 +227,7 @@ SDL_Surface *AtlasManager::createSDLAtlas(TextureAtlas *const atlas) if (!surface) return nullptr; - Graphics *const graphics = new Graphics(); + SDLGraphics *const graphics = new SDLGraphics(); graphics->setTarget(surface); graphics->_beginDraw(); diff --git a/src/resources/image.h b/src/resources/image.h index 5ac239471..556109564 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -55,6 +55,7 @@ class Image : public Resource friend class Graphics; friend class ImageHelper; friend class OpenGLImageHelper; + friend class SDLGraphics; friend class SDLImageHelper; #ifdef USE_OPENGL friend class AtlasManager; |