diff options
Diffstat (limited to 'engine/engine.cpp')
-rw-r--r-- | engine/engine.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/engine.cpp b/engine/engine.cpp index 4290c82..4e4b7fd 100644 --- a/engine/engine.cpp +++ b/engine/engine.cpp @@ -2,8 +2,6 @@ #include "config.h" -#include <wriggle/texturestbi.h> - #include <wriggle/gl.h> #include <iostream> @@ -46,7 +44,7 @@ Engine::Engine() { font = new FTTextureFont("fonts/VeraMono.ttf"); font->FaceSize(20); - background = new TextureSTBI("textures/background.png"); + background = new Texture("textures/background.png"); paused = false; } |