summaryrefslogtreecommitdiff
path: root/src/init2.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-28 08:18:38 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-28 08:18:38 +0200
commit046525fb26733df2e87928a48d2e23914174f5ac (patch)
treea24dd1c580fa8699fa0f69f6164975f9c0d2b54c /src/init2.c
parent3b0a9bcf376ab893751991199aea5888932accc5 (diff)
Remove NeXT conditional code
Diffstat (limited to 'src/init2.c')
-rw-r--r--src/init2.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/init2.c b/src/init2.c
index 977e6d1a..9c1c2afa 100644
--- a/src/init2.c
+++ b/src/init2.c
@@ -198,44 +198,6 @@ void init_file_paths(char *path)
/* Build a path name */
strcpy(tail, "xtra");
ANGBAND_DIR_XTRA = string_make(path);
-
-#ifdef NeXT
-
- /* Allow "fat binary" usage with NeXT */
- if (TRUE)
- {
- cptr next = NULL;
-
-# if defined(m68k)
- next = "m68k";
-# endif
-
-# if defined(i386)
- next = "i386";
-# endif
-
-# if defined(sparc)
- next = "sparc";
-# endif
-
-# if defined(hppa)
- next = "hppa";
-# endif
-
- /* Use special directory */
- if (next)
- {
- /* Forget the old path name */
- string_free(ANGBAND_DIR_DATA);
-
- /* Build a new path name */
- sprintf(tail, "data-%s", next);
- ANGBAND_DIR_DATA = string_make(path);
- }
- }
-
-#endif /* NeXT */
-
}