Home | History | Annotate | Download | only in rogue

Lines Matching defs:scores

339 	struct score_entry scores[NUM_SCORE_ENTRIES];
358 if (read_score_entry(&scores[numscores], fp) == 0) {
365 if (!strcmp(scores[i].username, login_name)) {
367 if (rogue.gold < scores[i].gold) {
382 scores[i] = scores[i+1];
394 if (rogue.gold >= scores[i].gold) {
403 scores[i] = scores[i-1];
408 make_score(&scores[rank], monster, other);
418 write_score_entry(&scores[i], i, fp);
424 /* Display the scores */
435 if (scores[i].nickname[0]) {
436 name = scores[i].nickname;
438 name = scores[i].username;
442 i+1, scores[i].gold, name, scores[i].death);