From 286e5ff0b2bb78f32d41a06750f09d6c0c3ed0b6 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 31 Jul 2001 16:51:48 +0000 Subject: [PATCH] --- source/platform/pghost.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/platform/pghost.cpp b/source/platform/pghost.cpp index b044298cd..0d418b833 100644 --- a/source/platform/pghost.cpp +++ b/source/platform/pghost.cpp @@ -90,7 +90,7 @@ void CNpcGhostTrainPlatform::processMovement( int _frames ) { moveX = -4 * _frames; - m_vertSpeed += 192; + m_vertSpeed += 96 * _frames; if ( m_vertSpeed > ( 8 << 8 ) ) { @@ -158,7 +158,7 @@ void CNpcGhostTrainPlatform::processMovement( int _frames ) if ( m_inJump ) { - m_vertSpeed += 192; + m_vertSpeed += 80 * _frames; if ( m_vertSpeed > ( 5 << 8 ) ) { @@ -262,7 +262,7 @@ void CNpcGhostTrainPlatform::processMovement( int _frames ) { if ( !m_rebound ) { - m_vertSpeed = -8 << 8; + m_vertSpeed = -6 << 8; m_rebound = true; Pos.vy -= 8; }