[Xmltools-development] xmltools2/xmltools/tests cars.c racecore.c Makefile
Status: Beta
Brought to you by:
nik_89
|
From: nik_89 <ni...@us...> - 2004-11-14 16:42:26
|
Update of /cvsroot/xmltools/xmltools2/xmltools/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv414 Modified Files: cars.c racecore.c Removed Files: Makefile Log Message: removed the Makefile since it is totally useless. cars.c : changed a single // comment to /* */ racecore.c : changed starting track coords to their corresponding defines : TRACK_START_X and _Y Index: racecore.c =================================================================== RCS file: /cvsroot/xmltools/xmltools2/xmltools/tests/racecore.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** racecore.c 20 Oct 2004 00:24:57 -0000 1.9 --- racecore.c 14 Nov 2004 16:42:17 -0000 1.10 *************** *** 62,66 **** /* (3, 4) is reserved for the start */ ! if (tx != 3 || ty != 4) { if (tileheld == TT_NONE) --- 62,66 ---- /* (3, 4) is reserved for the start */ ! if (tx != TRACK_START_X || ty != TRACK_START_Y) { if (tileheld == TT_NONE) --- Makefile DELETED --- Index: cars.c =================================================================== RCS file: /cvsroot/xmltools/xmltools2/xmltools/tests/cars.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** cars.c 14 Nov 2004 14:48:19 -0000 1.23 --- cars.c 14 Nov 2004 16:42:17 -0000 1.24 *************** *** 485,489 **** } ! //Track_NextDirection(track, &car->direction); return 0; } --- 485,489 ---- } ! /* Track_NextDirection(track, &car->direction); */ return 0; } |