summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-12-15 00:03:22 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-12-16 16:53:03 +0100
commit7642fc171f80cfc9e7484b20cc8e9fc7a2b69e76 (patch)
tree4af926a99db5d94a06a0de98a011d72a2d19d3ce /crawl-ref/source/view.h
parent322329c0e7c0ea12bc26a7a1d4e9c66c410fa053 (diff)
downloadcrawl-ref-7642fc171f80cfc9e7484b20cc8e9fc7a2b69e76.tar.gz
crawl-ref-7642fc171f80cfc9e7484b20cc8e9fc7a2b69e76.zip
Fix the "screenshot" in the char dump getting mangled to 7 bits.
Quite a rewrite of the function was needed, but it's actually simpler now, somewhat. The old code had a number of weird hacks without an explanation -- they don't appear to be needed, though.
Diffstat (limited to 'crawl-ref/source/view.h')
-rw-r--r--crawl-ref/source/view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/view.h b/crawl-ref/source/view.h
index e3e2cc4cf9..23f2ef3051 100644
--- a/crawl-ref/source/view.h
+++ b/crawl-ref/source/view.h
@@ -32,7 +32,7 @@ bool is_feature(wchar_t feature, const coord_def& where);
void clear_feature_overrides();
void add_feature_override(const std::string &text);
-std::string screenshot(bool fullscreen = false);
+std::string screenshot();
bool view_update();
void view_update_at(const coord_def &pos);