diff --git a/source/game/game.cpp b/source/game/game.cpp index d85d582db..2d68f8875 100644 --- a/source/game/game.cpp +++ b/source/game/game.cpp @@ -354,11 +354,12 @@ void CGameScene::initLevel() PntList++; DVECTOR startPos; - startPos.vx = newXPos; - startPos.vy = newYPos; + startPos.vx = newXPos << 4; + startPos.vy = newYPos << 4; platform->init( startPos ); platform->setLayerCollision( Level.getCollisionLayer() ); + platform->setTiltable( false ); platform->addWaypoint( newXPos, newYPos );