diff options
Diffstat (limited to 'src/resources/atlasmanager.cpp')
-rw-r--r-- | src/resources/atlasmanager.cpp | 4 |
1 files changed, 2 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(); |