summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-24 21:47:51 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-24 21:47:51 +0000
commited5d34361aa5820f6e49616dafec6f5160848834 (patch)
tree0c47b88da46944e9d31855b4578e1aae3c51f12c /crawl-ref/source/chardump.cc
parent61808dc89ba2d805ed3427ea1a7eb95c4af7f141 (diff)
downloadcrawl-ref-ed5d34361aa5820f6e49616dafec6f5160848834.tar.gz
crawl-ref-ed5d34361aa5820f6e49616dafec6f5160848834.zip
Experimentally dump the new overview screen rather than the old one.
I'm actually not entirely convinced this is the way to go. a) The new one is more informative, but the dump already contains all that extra information in a much more detail. b) The new one is much more concise, but that's something that's not necessary in the dump. On the plus side, new players doesn't have to get used to two different designs. Anyway, the old dump is still there, and we could use the dump options to let the player choose which one to use. For now, let's try whether it's possible to get used to this one. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5225 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index d83264c6ed..c57c1c9a7b 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -191,6 +191,7 @@ static void sdump_header(dump_params &par)
static void sdump_stats(dump_params &par)
{
+/*
std::vector<formatted_string> vfs =
get_full_detail(par.full_id, par.se? par.se->points : -1);
@@ -199,6 +200,8 @@ static void sdump_stats(dump_params &par)
par.text += vfs[i];
par.text += '\n';
}
+*/
+ par.text += dump_overview_screen(par.full_id);
par.text += "\n\n";
}