summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2012-12-17 01:24:54 -0500
committerNeil Moore <neil@s-z.org>2012-12-17 01:24:54 -0500
commit8f1bf02ff69b91399f66c8542e115848ba0d79bb (patch)
tree264edfccdfaefadf18418df98ecef9d2c2dbb50c /crawl-ref/source/chardump.cc
parent968cdc1e3d7096d700f37482113b31741d823fff (diff)
downloadcrawl-ref-8f1bf02ff69b91399f66c8542e115848ba0d79bb.tar.gz
crawl-ref-8f1bf02ff69b91399f66c8542e115848ba0d79bb.zip
Fix USE_DGAMELAUNCH compiles.
This does mean that an error writing timestamps is a more serious problem than it was before 85c029f.
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index 3e74485c85..42da5734b0 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -1555,7 +1555,7 @@ void dgl_record_timestamp(unsigned long file_offset, time_t time)
static bool timestamp_first_write = true;
if (FILE *ftimestamp = dgl_timestamp_filehandle())
{
- writer w(dgl_timestamp_filename(), ftimestamp, true);
+ writer w(dgl_timestamp_filename(), ftimestamp);
if (timestamp_first_write)
{
unsigned long ts_size = file_size(ftimestamp);