summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/initfile.cc4
-rw-r--r--crawl-ref/source/output.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 43cf178837..c887384b2d 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -755,9 +755,9 @@ void game_options::reset_options()
extra_levels.clear();
dump_order.clear();
- new_dump_fields("header,hiscore,stats,misc,turns_by_place,inventory,"
+ new_dump_fields("header,hiscore,stats,misc,inventory,"
"skills,spells,overview,mutations,messages,screenshot,"
- "kills_by_place,kills,notes");
+ "kills,notes");
hp_colour.clear();
hp_colour.push_back(std::pair<int,int>(100, LIGHTGREY));
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 32c2572f9d..c82506c82b 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -820,7 +820,7 @@ std::vector<formatted_string> get_full_detail(bool calc_unid, long sc)
snprintf(buf, sizeof buf,
"Play time : %10s\n"
"Turns : %10ld\n",
- make_time_string(curr).c_str(), you.num_turns );
+ make_time_string(curr, true).c_str(), you.num_turns );
cols.add_formatted(0, buf, true);
}