summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-scan.h
diff options
context:
space:
mode:
authorgammafunk <gammafunk@gmail.com>2014-06-23 00:11:59 -0500
committergammafunk <gammafunk@gmail.com>2014-06-25 20:50:43 -0500
commit544f0ae2f541e7ba4a8040d669daa8312c028298 (patch)
treea7606121afe6473d42df87fcd6f4e5d6a6deee20 /crawl-ref/source/dbg-scan.h
parentf1909d2967591ffdf556ca62d31855aa09329ad8 (diff)
downloadcrawl-ref-544f0ae2f541e7ba4a8040d669daa8312c028298.tar.gz
crawl-ref-544f0ae2f541e7ba4a8040d669daa8312c028298.zip
Write object statistics in one file per branch
All output in a single file was difficult to view and work with. Each file uses a common prefix of "objstat_", and the file names are printed to stdout.
Diffstat (limited to 'crawl-ref/source/dbg-scan.h')
-rw-r--r--crawl-ref/source/dbg-scan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dbg-scan.h b/crawl-ref/source/dbg-scan.h
index 2c6db6b590..0fbf144082 100644
--- a/crawl-ref/source/dbg-scan.h
+++ b/crawl-ref/source/dbg-scan.h
@@ -11,9 +11,9 @@ void debug_mons_scan();
void check_map_validity();
#ifdef DEBUG_DIAGNOSTICS
-void objgen_report_item(item_def &item);
+void objgen_record_item(item_def &item);
void objgen_generate_stats();
-void objgen_report_monster(monster *mons);
+void objgen_record_monster(monster *mons);
#endif
#endif