version 1.7 | | version 1.8 |
---|
| | |
/* | | /* |
* static char *rcsid_hiscore_c = | | * static char *rcsid_hiscore_c = |
* "$Id: hiscore.c,v 1.7 2002/07/15 04:25:40 mwedel Exp $"; | | * "$Id: hiscore.c,v 1.8 2002/11/13 05:24:53 garbled Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
new_draw_info(NDI_UNIQUE, 0,op,"you can't enter the high-score list."); | | new_draw_info(NDI_UNIQUE, 0,op,"you can't enter the high-score list."); |
return; | | return; |
} | | } |
#ifdef EXPLORE_MODE | | |
if (op->contr->explore) { | | if (op->contr->explore) { |
new_draw_info(NDI_UNIQUE, 0,op,"Since you were in explore mode,"); | | new_draw_info(NDI_UNIQUE, 0,op,"Since you were in explore mode,"); |
new_draw_info(NDI_UNIQUE, 0,op,"you can't enter the high-score list."); | | new_draw_info(NDI_UNIQUE, 0,op,"you can't enter the high-score list."); |
return; | | return; |
} | | } |
#endif | | |
strncpy(new_score.name,op->name,BIG_NAME); | | strncpy(new_score.name,op->name,BIG_NAME); |
strncpy(new_score.title,op->contr->own_title,BIG_NAME); | | strncpy(new_score.title,op->contr->own_title,BIG_NAME); |
if(new_score.title[0]=='\0') | | if(new_score.title[0]=='\0') |