summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilereg-doll.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-03-28 11:01:23 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-03-28 11:01:23 +0200
commitd97e13bad62041beab052c65fad9e1049230b430 (patch)
tree7903bfe16b236155082267f8e5c8d051ffc5a7f9 /crawl-ref/source/tilereg-doll.cc
parentc373b29efe99185bc89e6307e5c455107044a387 (diff)
downloadcrawl-ref-d97e13bad62041beab052c65fad9e1049230b430.tar.gz
crawl-ref-d97e13bad62041beab052c65fad9e1049230b430.zip
Wrap some egregiously long lines in the source.
While adhering religiously to the 80 column limit tends to be often pointless, 173 column long lines are way, way over the edge from the other side.
Diffstat (limited to 'crawl-ref/source/tilereg-doll.cc')
-rw-r--r--crawl-ref/source/tilereg-doll.cc24
1 files changed, 18 insertions, 6 deletions
diff --git a/crawl-ref/source/tilereg-doll.cc b/crawl-ref/source/tilereg-doll.cc
index 0cc712c94e..6fa66ad718 100644
--- a/crawl-ref/source/tilereg-doll.cc
+++ b/crawl-ref/source/tilereg-doll.cc
@@ -291,12 +291,24 @@ void DollEditRegion::render()
const int width = m_font->char_width();
const float start_y = doll_name_y + height * 3;
const float start_x = width * 6;
- m_font_buf.add("Change parts left/right Confirm choice Enter", VColour::white, start_x, start_y);
- m_font_buf.add("Change category up/down Copy doll Ctrl-C", VColour::white, start_x, start_y + height * 1);
- m_font_buf.add("Change doll 0-9, Shift + arrows Paste copied doll Ctrl-V", VColour::white, start_x, start_y + height * 2);
- m_font_buf.add("Change doll mode m Randomise doll Ctrl-R", VColour::white, start_x, start_y + height * 3);
- m_font_buf.add("Save menu Escape, Ctrl-S Toggle equipment *", VColour::white, start_x, start_y + height * 4);
- m_font_buf.add("Quit menu q, Ctrl-Q", VColour::white, start_x, start_y + height * 5);
+ m_font_buf.add(
+ "Change parts left/right Confirm choice Enter",
+ VColour::white, start_x, start_y);
+ m_font_buf.add(
+ "Change category up/down Copy doll Ctrl-C",
+ VColour::white, start_x, start_y + height * 1);
+ m_font_buf.add(
+ "Change doll 0-9, Shift + arrows Paste copied doll Ctrl-V",
+ VColour::white, start_x, start_y + height * 2);
+ m_font_buf.add(
+ "Change doll mode m Randomise doll Ctrl-R",
+ VColour::white, start_x, start_y + height * 3);
+ m_font_buf.add(
+ "Save menu Escape, Ctrl-S Toggle equipment *",
+ VColour::white, start_x, start_y + height * 4);
+ m_font_buf.add(
+ "Quit menu q, Ctrl-Q",
+ VColour::white, start_x, start_y + height * 5);
}
m_font_buf.draw();