diff options
author | Bardur Arantsson <bardur@scientician.net> | 2012-06-26 17:22:37 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2012-06-26 17:22:37 +0200 |
commit | 67485c9c36e244861c6226a3854781d1dd16f3ca (patch) | |
tree | 0af1c75e09fcfbce364202c41f1938f79afa92b3 /src/files.c | |
parent | 6c3d9cd354cc69bbbc719e0be91169946e3212a0 (diff) |
Remove ANGBAND_DIR_APEX since it's not used any more
Diffstat (limited to 'src/files.c')
-rw-r--r-- | src/files.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/files.c b/src/files.c index ee3bc86c..01f55d7e 100644 --- a/src/files.c +++ b/src/files.c @@ -5036,7 +5036,7 @@ void display_scores(int from, int to) char buf[1024]; /* Build the filename */ - path_build(buf, 1024, ANGBAND_DIR_APEX, "scores.raw"); + path_build(buf, 1024, ANGBAND_DIR_USER, "scores.raw"); /* Open the binary high score file, for reading */ highscore_fd = fd_open(buf, O_RDONLY); @@ -5108,7 +5108,7 @@ void show_highclass(int building) } /* Build the filename */ - path_build(buf, 1024, ANGBAND_DIR_APEX, "scores.raw"); + path_build(buf, 1024, ANGBAND_DIR_USER, "scores.raw"); /* Open file */ highscore_fd = fd_open(buf, O_RDONLY); @@ -5199,7 +5199,7 @@ void race_score(int race_num) prt(tmp_str, 5, 3); /* Build the filename */ - path_build(buf, 1024, ANGBAND_DIR_APEX, "scores.raw"); + path_build(buf, 1024, ANGBAND_DIR_USER, "scores.raw"); /* Open the highscore file */ highscore_fd = fd_open(buf, O_RDONLY); @@ -5636,7 +5636,7 @@ void close_game(void) /* Build the filename */ - path_build(buf, 1024, ANGBAND_DIR_APEX, "scores.raw"); + path_build(buf, 1024, ANGBAND_DIR_USER, "scores.raw"); /* Open the high score file, for reading/writing */ highscore_fd = fd_open(buf, O_RDWR); |