diff options
Diffstat (limited to 'engine/engine.cpp')
-rw-r--r-- | engine/engine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/engine.cpp b/engine/engine.cpp index 278007e..0c54bae 100644 --- a/engine/engine.cpp +++ b/engine/engine.cpp @@ -2,7 +2,7 @@ #include "config.h" -#include <wriggle/texturesdl.h> +#include <wriggle/texturestbi.h> #include <SDL/SDL_opengl.h> @@ -46,7 +46,7 @@ Engine::Engine() { font = new FTTextureFont("fonts/VeraMono.ttf"); font->FaceSize(20); - background = new TextureSDL("textures/background.png"); + background = new TextureSTBI("textures/background.png"); paused = false; } |