summaryrefslogtreecommitdiff
path: root/src/birth.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-12-29 12:09:30 +0100
committerBardur Arantsson <bardur@scientician.net>2015-12-29 12:09:30 +0100
commit4aa1a39402c3908e9e8b6eb3fd4e2183d5e5c52e (patch)
treec1d93d415b96238aae3c54eb83cb0815af2e4bca /src/birth.cc
parent729e3854b753ebc2e8c0ab28b760ca3ccc99412b (diff)
Remove MACINTOSH-compatibility code
Diffstat (limited to 'src/birth.cc')
-rw-r--r--src/birth.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/birth.cc b/src/birth.cc
index 5d7e64bd..f3897496 100644
--- a/src/birth.cc
+++ b/src/birth.cc
@@ -3396,9 +3396,6 @@ int load_savefile_names()
strcpy(tmp, "global.svg");
path_build(buf, 1024, ANGBAND_DIR_SAVE, tmp);
- /* File type is "TEXT" */
- FILE_TYPE(FILE_TYPE_TEXT);
-
/* Read the file */
fff = my_fopen(buf, "r");
@@ -3469,9 +3466,6 @@ int load_savefile_names()
strncpy(player_base, savefile_names[max], 32);
process_player_name(TRUE);
- /* File type is 'SAVE' */
- FILE_TYPE(FILE_TYPE_SAVE);
-
/* Try to open the savefile */
fd = fd_open(savefile, O_RDONLY);
@@ -3508,9 +3502,6 @@ void save_savefile_names()
strcpy(tmp, "global.svg");
path_build(buf, 1024, ANGBAND_DIR_SAVE, tmp);
- /* File type is "TEXT" */
- FILE_TYPE(FILE_TYPE_TEXT);
-
/* Read the file */
fff = my_fopen(buf, "w");