- decreased kick time even more, fixed type error
authorIngo Ruhnke <grumbel@gmx.de>
Tue, 27 Apr 2004 18:55:57 +0000 (18:55 +0000)
committerIngo Ruhnke <grumbel@gmx.de>
Tue, 27 Apr 2004 18:55:57 +0000 (18:55 +0000)
SVN-Revision: 789

src/defines.h
src/text.cpp

index f7642d4..c2c71a7 100644 (file)
@@ -87,8 +87,7 @@ enum DyingType {
 
 /* Timing constants (in ms): */
 
-#define KICKING_TIME 600
-
+#define KICKING_TIME 200
 
 /* Debugging */
 
index 6560327..6d2e3a5 100644 (file)
@@ -246,7 +246,7 @@ void display_text_file(const std::string& file, Surface* surface)
   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)