diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-10-02 03:44:08 +0200 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-10-02 03:44:08 +0200 |
commit | 4414344fb085c458bd689d95a9f02bc251d0554a (patch) | |
tree | f2752fa50ed250f46cf61d98dd3d5ef0ae42b310 /engine/player.cpp | |
parent | cd5f7f9c3ff949dcc5922fd91e79028a9bf489ab (diff) |
Replaced all instances of TextureSDL with TextureSTBI.
Diffstat (limited to 'engine/player.cpp')
-rw-r--r-- | engine/player.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/player.cpp b/engine/player.cpp index 091f874..4b09890 100644 --- a/engine/player.cpp +++ b/engine/player.cpp @@ -2,7 +2,7 @@ #include <cmath> #include "player.h" -#include <wriggle/texturesdl.h> +#include <wriggle/texturestbi.h> #include "config.h" Player::Player() { @@ -10,7 +10,7 @@ Player::Player() { y = 0.1; move_factor = 0.005; focus_factor = 0.5; - texture = new TextureSDL("textures/player.png"); + texture = new TextureSTBI("textures/player.png"); } void Player::draw() { |