From 4414344fb085c458bd689d95a9f02bc251d0554a Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sat, 2 Oct 2010 03:44:08 +0200 Subject: Replaced all instances of TextureSDL with TextureSTBI. --- engine/enemy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/enemy.cpp') diff --git a/engine/enemy.cpp b/engine/enemy.cpp index 383ddc7..0f0c32f 100644 --- a/engine/enemy.cpp +++ b/engine/enemy.cpp @@ -1,13 +1,13 @@ #include "enemy.h" -#include +#include #include Enemy::Enemy(const Vector2& initpos, std::vector& stage_patterns) : patterns(stage_patterns) { pos = initpos; - texture = new TextureSDL("textures/enemy.png"); + texture = new TextureSTBI("textures/enemy.png"); } void Enemy::update() { -- cgit v1.2.3