JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
hmm...apparently you can't strdup a NULL pointer :)
[vor.git] / score.c
diff --git a/score.c b/score.c
index ac619dd..e49e956 100644 (file)
--- a/score.c
+++ b/score.c
@@ -1,3 +1,21 @@
+/* Variations on RockDodger
+ * Copyright (C) 2004 Joshua Grams <josh@qualdan.com>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
 #include "config.h"
 
 #include "SFont.h"
 #include "config.h"
 
 #include "SFont.h"
 
 // High score table
 struct highscore g_scores[N_SCORES] = {
 
 // High score table
 struct highscore g_scores[N_SCORES] = {
-       {13000,"Pad"},
-       {12500,"Pad"},
-       {6500,"Pad"},
-       {5000,"Pad"},
-       {3000,"Pad"},
-       {2500,"Pad"},
-       {2000,"Pad"},
-       {1500,"Pad"}
+       {1*60*1000,"-"},
+       {45*1000,"-"},
+       {30*1000,"-"},
+       {20*1000,"-"},
+       {10*1000,"-"},
+       {7*1000,"-"},
+       {5*1000,"-"},
+       {3*1000,"-"}
 };
 
 extern SFont_Font *g_font;
 };
 
 extern SFont_Font *g_font;