From 06b20f4b9d18f0a8730707d63f9714719157a9a3 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Tue, 26 Jun 2012 19:49:18 +0200 Subject: Remove HIGHSCORE_DATE_HACK --- src/files.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/files.c') diff --git a/src/files.c b/src/files.c index ba60ae29..4e2ff70a 100644 --- a/src/files.c +++ b/src/files.c @@ -5377,13 +5377,8 @@ static errr top_twenty(void) sprintf(the_score.turns, "%9lu", (long)turn - (START_DAY * 10L)); the_score.turns[9] = '\0'; -#ifdef HIGHSCORE_DATE_HACK - /* Save the date in a hacked up form (9 chars) */ - sprintf(the_score.day, "%-.6s %-.2s", ctime(&ct) + 4, ctime(&ct) + 22); -#else /* Save the date in standard form (8 chars) */ strftime(the_score.day, 9, "%m/%d/%y", localtime(&ct)); -#endif /* Save the player name (15 chars) */ sprintf(the_score.who, "%-.15s", player_name); -- cgit v1.2.3