summaryrefslogtreecommitdiff
path: root/src/files.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-02-18 12:55:01 +0100
committerBardur Arantsson <bardur@scientician.net>2012-03-29 19:53:57 +0200
commitc70d7a8c1fdf97aecc1e2a3a182fa1f3c091520a (patch)
tree0defd08159f04fb4d89022a157923ba152321c78 /src/files.c
parenta782675c1580b6e9df12c8e1b73aee82be2051ec (diff)
Remove conditional compilation based on PRIVATE_USER_PATH. It is always set.
Diffstat (limited to 'src/files.c')
-rw-r--r--src/files.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/files.c b/src/files.c
index 5bf2ef58..3facb8ef 100644
--- a/src/files.c
+++ b/src/files.c
@@ -3966,13 +3966,8 @@ void process_player_base()
{
char temp[128];
-#if defined(SAVEFILE_USE_UID) && !defined(PRIVATE_USER_PATH)
- /* Rename the savefile, using the player_uid and player_base */
- (void)sprintf(temp, "%d.%s", player_uid, player_base);
-#else
/* Rename the savefile, using the player_base */
(void)sprintf(temp, "%s", player_base);
-#endif
/* Build the filename */
path_build(savefile, 1024, ANGBAND_DIR_SAVE, temp);