summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/startup.cc
diff options
context:
space:
mode:
authorgammafunk <gammafunk@gmail.com>2014-06-25 01:27:25 -0500
committergammafunk <gammafunk@gmail.com>2014-06-25 20:50:43 -0500
commit0840c16e4d6386d93aa7e44eb99852f0903d0c61 (patch)
tree4dd7057bd0af4441dd2ca764c6d02db2566a8ea2 /crawl-ref/source/startup.cc
parentd817d06195cb83a15d0cb3055a23aea97c7af08f (diff)
downloadcrawl-ref-0840c16e4d6386d93aa7e44eb99852f0903d0c61.tar.gz
crawl-ref-0840c16e4d6386d93aa7e44eb99852f0903d0c61.zip
Clean up function and variable names for objstat
We now consistently use objstat_ as a prefix for non-static functions and don't use prefixes for static functions and variables. Various enums, classes, and defines have also been renamed to more clearly reflect their function. I also added command-line help documentation for mapstat and objstat
Diffstat (limited to 'crawl-ref/source/startup.cc')
-rw-r--r--crawl-ref/source/startup.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/startup.cc b/crawl-ref/source/startup.cc
index 49b714f040..5fae8ecfb3 100644
--- a/crawl-ref/source/startup.cc
+++ b/crawl-ref/source/startup.cc
@@ -167,7 +167,7 @@ static void _initialize()
else if (crawl_state.obj_stat_gen)
{
release_cli_signals();
- objgen_generate_stats();
+ objstat_generate_stats();
end(0, false);
}
#endif