From abe456dc1bcbed875770ed66b3deaa39b95b0a2c Mon Sep 17 00:00:00 2001 From: Ricardo Cruz Date: Thu, 6 May 2004 15:03:24 +0000 Subject: [PATCH] This should work, i guess... SVN-Revision: 1006 --- src/world.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/world.cpp b/src/world.cpp index 1256420d9..7c284003e 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -340,9 +340,13 @@ void World::scrolling(double frame_ratio) final_scroll_x = tux_pos_x - X_SPACE; } - scroll_x += (final_scroll_x - scroll_x) +/* scroll_x += (final_scroll_x - scroll_x) / (frame_ratio * (CHANGE_DIR_SCROLL_SPEED / 100)) + (tux.physic.get_velocity_x() * frame_ratio + tux.physic.get_acceleration_x() * frame_ratio * frame_ratio); +*/ + +scroll_x += ((final_scroll_x - scroll_x) / CHANGE_DIR_SCROLL_SPEED) * frame_ratio; + // std::cerr << tux_pos_x << " " << final_scroll_x << " " << scroll_x << std::endl; } -- 2.11.0