From 5519942fa584ee30a0fde3752adff030c3dc42b8 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Fri, 5 Oct 2012 22:47:27 +0200 Subject: [PATCH] fix blocking flag of guy --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index a75a087..bf57b84 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -354,7 +354,7 @@ int main(int argc, char **argv) { mapGuy.SetAnimation(&mapGuyAnimation); mapGuy.Position() = Vector(64, 128); mapGuy.SpriteOffset() = Vector(0, -32); - mapSelan.SetFlags(Entity::FLAG_NONBLOCKING); + mapGuy.SetFlags(Entity::FLAG_NONBLOCKING); mapSelan.AddFollower(&mapGuy); SDL_Surface *mapDekarImg(IMG_Load("test-data/dekar-map.png")); -- 2.39.2