From 16387ebce2642dc47f2ac883cf29c2d43f0b21b3 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 9 Apr 2001 15:57:20 +0000 Subject: [PATCH] --- source/game/game.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 );