From: sapier Date: Sun, 11 Jan 2015 12:57:26 +0000 (+0100) Subject: Fix invalid stepheight increase calculation on android X-Git-Tag: 0.4.12~112 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2d9b311e7b6c20382790e82f0ccf74f91278a0c3;p=oweals%2Fminetest.git Fix invalid stepheight increase calculation on android --- diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 8570dd2f0..a5ce147c1 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -209,7 +209,7 @@ void LocalPlayer::move(f32 dtime, Environment *env, f32 pos_max_d, float player_stepheight = touching_ground ? (BS*0.6) : (BS*0.2); #ifdef __ANDROID__ - player_stepheight += 0.5; + player_stepheight += (0.5 * BS); #endif v3f accel_f = v3f(0,0,0);