[Super-tux-commit] supertux/src defines.h,1.26,1.27 text.cpp,1.15,1.16
Brought to you by:
wkendrick
From: Ingo R. <gr...@us...> - 2004-04-27 18:56:06
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6580 Modified Files: defines.h text.cpp Log Message: - decreased kick time even more, fixed type error Index: text.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/text.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- text.cpp 27 Apr 2004 15:15:18 -0000 1.15 +++ text.cpp 27 Apr 2004 18:55:57 -0000 1.16 @@ -246,7 +246,7 @@ string_list_type names; char filename[1024]; string_list_init(&names); - sprintf(filename,"%s/%s", datadir.c_str(), file); + sprintf(filename,"%s/%s", datadir.c_str(), file.c_str()); if((fi = fopen(filename,"r")) != NULL) { while(fgets(temp, sizeof(temp), fi) != NULL) Index: defines.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/defines.h,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- defines.h 27 Apr 2004 13:59:15 -0000 1.26 +++ defines.h 27 Apr 2004 18:55:57 -0000 1.27 @@ -87,8 +87,7 @@ /* Timing constants (in ms): */ -#define KICKING_TIME 600 - +#define KICKING_TIME 200 /* Debugging */ |