Changeset 200

Show
Ignore:
Timestamp:
06/21/07 19:58:23 (1 year ago)
Author:
takkaria
Message:

Fix [199].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/externs.h

    r189 r200  
    3030extern char pf_result[]; 
    3131extern int pf_result_index; 
     32 
     33/* files.c */ 
     34extern int score_idx; 
    3235 
    3336/* tables.c */ 
     
    476479extern bool findpath(int y, int x); 
    477480 
     481/* randart.c */ 
     482extern errr do_randart(u32b randart_seed, bool full); 
     483 
    478484/* signals.c */ 
    479485extern void signals_ignore_tstp(void); 
     
    670676#endif /* SUPPORT_GAMMA */ 
    671677 
     678/* util.c */ 
     679extern void repeat_push(int what); 
     680extern bool repeat_pull(int *what); 
     681extern void repeat_clear(void); 
     682extern void repeat_check(void); 
     683 
    672684/* xtra1.c */ 
    673685extern void cnv_stat(int val, char *out_val, size_t len); 
     
    717729 
    718730 
    719 #ifdef ALLOW_REPEAT 
    720 /* util.c */ 
    721 extern void repeat_push(int what); 
    722 extern bool repeat_pull(int *what); 
    723 extern void repeat_clear(void); 
    724 extern void repeat_check(void); 
    725 #endif /* ALLOW_REPEAT */ 
    726  
    727  
    728 #ifdef GJW_RANDART 
    729 /* randart.c */ 
    730 extern errr do_randart(u32b randart_seed, bool full); 
    731 #endif /* GJW_RANDART */ 
    732  
    733731#ifdef RISCOS 
    734732/* main-ros.c */ 
  • trunk/src/files.c

    r199 r200  
    33143314 * Hack - save index of player's high score 
    33153315 */ 
    3316 static int score_idx = -1; 
     3316int score_idx = -1; 
    33173317 
    33183318