summaryrefslogtreecommitdiff
path: root/engine/engine.cpp
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-10-05 07:00:49 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-10-05 07:00:49 +0200
commita24cc110acebb3fc1b40a38d08f737bf09b15e54 (patch)
tree7859d031542270700da3b59d7b9f6927ec8b8076 /engine/engine.cpp
parent5572a8133963447bc60098d952cebfe3902dad27 (diff)
Moved from TextureSTBI to Texture.
Diffstat (limited to 'engine/engine.cpp')
-rw-r--r--engine/engine.cpp4
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;
}