summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-01 05:38:29 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-01 05:38:29 +0000
commite968c2c7b51a0c13f9b7a2560e555abb5fba4e41 (patch)
tree3574adaf2a63fb69b7f0d3f8aee3a887ad198faa /crawl-ref/source/hiscores.cc
parent9cf14072d9a196d78226da47bc57a49783519605 (diff)
downloadcrawl-ref-e968c2c7b51a0c13f9b7a2560e555abb5fba4e41.tar.gz
crawl-ref-e968c2c7b51a0c13f9b7a2560e555abb5fba4e41.zip
When DGAMELAUNCH is defined, use gmtime() instead of localtime() so it's easier to keep multiple dgl servers in sync.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6744 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index a4af6be2b3..ee9297a43d 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -327,19 +327,19 @@ std::string hiscores_format_single(const scorefile_entry &se)
static bool _hiscore_same_day( time_t t1, time_t t2 )
{
- struct tm *d1 = localtime( &t1 );
+ struct tm *d1 = TIME_FN( &t1 );
const int year = d1->tm_year;
const int mon = d1->tm_mon;
const int day = d1->tm_mday;
- struct tm *d2 = localtime( &t2 );
+ struct tm *d2 = TIME_FN( &t2 );
return (d2->tm_mday == day && d2->tm_mon == mon && d2->tm_year == year);
}
static void _hiscore_date_string( time_t time, char buff[INFO_SIZE] )
{
- struct tm *date = localtime( &time );
+ struct tm *date = TIME_FN( &time );
const char *mons[12] = { "Jan", "Feb", "Mar", "Apr", "May", "June",
"July", "Aug", "Sept", "Oct", "Nov", "Dec" };