X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=score.c;h=e49e956c862ea168edcef209df09ff20ba613e47;hp=ac619dd58cac9138fd2222465c1ff75f7f67b391;hb=e10d6c0b95e2f4fe7acd75733370dae71bb3b73f;hpb=27592afb035feefb37bff84eb3b42a1c6bff5621 diff --git a/score.c b/score.c index ac619dd..e49e956 100644 --- a/score.c +++ b/score.c @@ -1,3 +1,21 @@ +/* Variations on RockDodger + * Copyright (C) 2004 Joshua Grams + * + * 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" @@ -13,14 +31,14 @@ // 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;