From 5990e7802c84b3f407de3934a1d75721115d1da7 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 13 Mar 2015 16:35:02 -0400 Subject: Fixed bug with blitting transparent textures Also moved player in front of checkpoint --- src/game.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/game.cpp b/src/game.cpp index e2c1b9c..b149392 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -118,7 +118,6 @@ void Game::loadMap(const Map& map) nextEntities.clear(); nextEntities.push_back(mapEn); - nextEntities.push_back(player); // this is cheating but is just for testing if (&map == &m2) @@ -143,6 +142,8 @@ void Game::loadMap(const Map& map) nextEntities.push_back(saveEn); } + nextEntities.push_back(player); + newWorld = true; } -- cgit 1.4.1