diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp index ab480c3db..ca992c056 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1596,7 +1596,7 @@ void the_game( input->step(dtime); // Increase timer for doubleclick of "jump" - if(g_settings->getBool("doubletab_jump") && jump_timer <= 0.2) + if(g_settings->getBool("doubletap_jump") && jump_timer <= 0.2) jump_timer += dtime; /* @@ -1690,7 +1690,7 @@ void the_game( } else if(input->wasKeyDown(getKeySetting("keymap_jump"))) { - if(g_settings->getBool("doubletab_jump") && jump_timer < 0.2) + if(g_settings->getBool("doubletap_jump") && jump_timer < 0.2) { if(g_settings->getBool("free_move")) { |