Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23902/src
Modified Files:
setup.cpp
Log Message:
Just moved the Right with the Left entry in Controls.
I'm so used to define the Left key firstly... :)
Index: setup.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/setup.cpp,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- setup.cpp 22 Apr 2004 11:26:39 -0000 1.48
+++ setup.cpp 22 Apr 2004 20:45:22 -0000 1.49
@@ -407,8 +407,8 @@
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);
|