From: Ricardo Cruz Date: Thu, 22 Apr 2004 20:45:22 +0000 (+0000) Subject: Just moved the Right with the Left entry in Controls. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=56e8cb8ce9c099a1bbeb205b710cc1989fd893a1;p=supertux.git Just moved the Right with the Left entry in Controls. I'm so used to define the Left key firstly... :) SVN-Revision: 655 --- diff --git a/src/setup.cpp b/src/setup.cpp index 48bd600bf..765f1070c 100644 --- a/src/setup.cpp +++ b/src/setup.cpp @@ -407,8 +407,8 @@ void st_menu(void) options_controls_menu->additem(MN_LABEL,"Controls",0,0); options_controls_menu->additem(MN_HL,"",0,0); - options_controls_menu->additem(MN_CONTROLFIELD,"Right move", 0,0, &keymap.right); options_controls_menu->additem(MN_CONTROLFIELD,"Left move", 0,0, &keymap.left); + options_controls_menu->additem(MN_CONTROLFIELD,"Right move", 0,0, &keymap.right); options_controls_menu->additem(MN_CONTROLFIELD,"Jump", 0,0, &keymap.jump); options_controls_menu->additem(MN_CONTROLFIELD,"Duck", 0,0, &keymap.duck); options_controls_menu->additem(MN_CONTROLFIELD,"Power", 0,0, &keymap.fire);