From: Daniel Karbach Date: Fri, 5 Oct 2012 20:47:27 +0000 (+0200) Subject: fix blocking flag of guy X-Git-Url: http://git.localhorst.tv/?a=commitdiff_plain;h=5519942fa584ee30a0fde3752adff030c3dc42b8;hp=34e6fb59f355d1a4afc0a9a647aeb098b998dbbd;p=l2e.git fix blocking flag of guy --- 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"));