[Tuxracer-checkins] CVS: tuxracer/src event_select.c,1.7,1.8 game_type_select.c,1.7,1.8 race_select.
Status: Beta
Brought to you by:
jfpatry
From: Jasmin P. <jf...@us...> - 2000-10-01 18:00:07
|
Update of /cvsroot/tuxracer/tuxracer/src In directory slayer.i.sourceforge.net:/tmp/cvs-serv22214 Modified Files: event_select.c game_type_select.c race_select.c Log Message: Tweaked UI snow calls. Index: event_select.c =================================================================== RCS file: /cvsroot/tuxracer/tuxracer/src/event_select.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** event_select.c 2000/10/01 15:12:29 1.7 --- event_select.c 2000/10/01 18:00:02 1.8 *************** *** 357,362 **** point2d_t dummy_pos = {0, 0}; - init_ui_snow(); - glutDisplayFunc( main_loop ); glutIdleFunc( main_loop ); --- 357,360 ---- *************** *** 441,446 **** static void event_select_loop( scalar_t time_step ) { - point2d_t current_mouse_pos; - check_gl_error(); --- 439,442 ---- *************** *** 454,458 **** if (getparam_ui_snow()) { - current_mouse_pos = ui_get_mouse_position(); update_ui_snow( time_step, False ); draw_ui_snow(); --- 450,453 ---- Index: game_type_select.c =================================================================== RCS file: /cvsroot/tuxracer/tuxracer/src/game_type_select.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** game_type_select.c 2000/10/01 15:12:29 1.7 --- game_type_select.c 2000/10/01 18:00:02 1.8 *************** *** 135,140 **** point2d_t dummy_pos = {0, 0}; - init_ui_snow(); - glutDisplayFunc( main_loop ); glutIdleFunc( main_loop ); --- 135,138 ---- *************** *** 181,186 **** static void game_type_select_loop( scalar_t time_step ) { - point2d_t current_mouse_pos; - check_gl_error(); --- 179,182 ---- *************** *** 196,200 **** if (getparam_ui_snow()) { - current_mouse_pos = ui_get_mouse_position(); update_ui_snow( time_step, False ); draw_ui_snow(); --- 192,195 ---- Index: race_select.c =================================================================== RCS file: /cvsroot/tuxracer/tuxracer/src/race_select.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** race_select.c 2000/10/01 15:12:29 1.11 --- race_select.c 2000/10/01 18:00:02 1.12 *************** *** 826,831 **** int i; - init_ui_snow(); - glutDisplayFunc( main_loop ); glutIdleFunc( main_loop ); --- 826,829 ---- |