summaryrefslogtreecommitdiff
path: root/src/files.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-01-11 23:46:27 +0100
committerBardur Arantsson <bardur@scientician.net>2010-01-11 23:46:28 +0100
commitd829c88460b4d60ecc3a9f339dd57113c764cf80 (patch)
tree70857f09a01b3570c9c53960d49797007983a7dd /src/files.c
parentbdfb7e6170baeceb3b79bcd8dad3b15f1a90051f (diff)
Remove obsolete platforms/frontends.
Removed platforms/systems: - OS/2 - RiscOS - SVGALib - IBM DOS - VM/ESA (Vax) - Amiga - Acorn - Dummy - VMS - Macintosh (non-Carbon)
Diffstat (limited to 'src/files.c')
-rw-r--r--src/files.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/files.c b/src/files.c
index c3166f4a..792393e7 100644
--- a/src/files.c
+++ b/src/files.c
@@ -4606,7 +4606,7 @@ void html_screenshot(cptr name)
* Because this is dead code and hardly anyone but DG needs it.
* IMHO this should never been included in the game code -- pelpel
*/
-#if !defined(WINDOWS) && !defined(MACINTOSH) && !defined(ACORN)
+#if !defined(WINDOWS) && !defined(MACINTOSH)
#define KEY_NUM 9
static int keys_tab[KEY_NUM] =
@@ -4744,7 +4744,7 @@ bool chg_to_txt(cptr base, cptr newname)
return (TRUE);
}
-#endif /* !WINDOWS && !MACINTOSH && !ACORN */
+#endif /* !WINDOWS && !MACINTOSH */
/*
* Peruse the On-Line-Help
@@ -4781,11 +4781,6 @@ void process_player_base()
(void)sprintf(temp, "%s", player_base);
#endif
-#ifdef VM
- /* Hack -- support "flat directory" usage on VM/ESA */
- (void)sprintf(temp, "%s.sv", player_base);
-#endif /* VM */
-
/* Build the filename */
path_build(savefile, 1024, ANGBAND_DIR_SAVE, temp);
}