summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/menu.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2009-12-07 18:12:17 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2009-12-07 18:12:17 +0100
commit389bb3b9bce97d135307b650eb95d3ea1ad1e557 (patch)
tree5bacbfe485316a876cb6eb87d2a1ee983c39282a /crawl-ref/source/menu.h
parent87da8db7d1e1a45d9aadaf6b4bc6f07ae5c822e0 (diff)
downloadcrawl-ref-389bb3b9bce97d135307b650eb95d3ea1ad1e557.tar.gz
crawl-ref-389bb3b9bce97d135307b650eb95d3ea1ad1e557.zip
Use proper newlines in the ?v version information.
I hope this isn't another one of those ascii/tiles or OS differences but for me at least the empty lines between sections weren't being displayed in the console version, either.
Diffstat (limited to 'crawl-ref/source/menu.h')
-rw-r--r--crawl-ref/source/menu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/menu.h b/crawl-ref/source/menu.h
index fb822388ed..054ef2febe 100644
--- a/crawl-ref/source/menu.h
+++ b/crawl-ref/source/menu.h
@@ -534,7 +534,7 @@ public:
virtual void add_item_formatted_string(const formatted_string& s,
int hotkey = 0);
virtual void add_item_string(const std::string& s, int hotkey = 0);
- virtual void add_text(const std::string& s);
+ virtual void add_text(const std::string& s, bool new_line = false);
virtual bool jump_to_hotkey( int keyin );
virtual ~formatted_scroller();
protected: