From 68ebc1642215bfc766d7b90430370d1769dd3098 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Sat, 22 Feb 2014 17:07:23 +0100 Subject: [PATCH] Speed up jumping. --- src/moversine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/moversine.cpp b/src/moversine.cpp index d376610..97625d9 100644 --- a/src/moversine.cpp +++ b/src/moversine.cpp @@ -24,7 +24,7 @@ namespace cloonel { ///-------------------------------------------------------------------------- void MoverSine::ApplyMotion (float parDelta) { const float pitwo = static_cast(M_PI) * 2.0f; - m_alpha += parDelta; + m_alpha += parDelta * 2.6f; if (m_alpha >= pitwo) m_alpha -= pitwo; }