[Tuxracer-checkins] CVS: tuxracer/src game_config.c,1.35,1.36 game_config.h,1.23,1.24
Status: Beta
Brought to you by:
jfpatry
From: Jasmin P. <jf...@us...> - 2000-10-01 19:57:11
|
Update of /cvsroot/tuxracer/tuxracer/src In directory slayer.i.sourceforge.net:/tmp/cvs-serv8089 Modified Files: game_config.c game_config.h Log Message: Added parameter for joystick continue button mapping. Index: game_config.c =================================================================== RCS file: /cvsroot/tuxracer/tuxracer/src/game_config.c,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** game_config.c 2000/10/01 15:13:03 1.35 --- game_config.c 2000/10/01 19:57:08 1.36 *************** *** 368,371 **** --- 368,372 ---- struct param joystick_jump_button; struct param joystick_trick_button; + struct param joystick_continue_button; struct param no_audio; *************** *** 587,594 **** --- 588,600 ---- joystick_jump_button, 3 , "# Joystick button for jumping (numbering starts at 0)" ); + INIT_PARAM_INT( joystick_trick_button, 1 , "# Joystick button for doing tricks (numbering starts at 0)" ); + INIT_PARAM_INT( + joystick_continue_button, 0 , + "# Joystick button for moving past intro, paused, and \n" + "# game over screens (numbering starts at 0)" ); INIT_PARAM_INT( *************** *** 732,735 **** --- 738,742 ---- FN_PARAM_INT( joystick_paddle_button ) FN_PARAM_INT( joystick_trick_button ) + FN_PARAM_INT( joystick_continue_button ) FN_PARAM_INT( fov ) FN_PARAM_STRING( debug ) Index: game_config.h =================================================================== RCS file: /cvsroot/tuxracer/tuxracer/src/game_config.h,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** game_config.h 2000/10/01 15:13:03 1.23 --- game_config.h 2000/10/01 19:57:08 1.24 *************** *** 122,125 **** --- 122,127 ---- PROTO_PARAM_INT( joystick_trick_button ); + PROTO_PARAM_INT( joystick_continue_button ); + PROTO_PARAM_INT( fov ); |