summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index 6f38a67b65..08cdfd212b 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -559,7 +559,7 @@ static void sdump_notes(dump_params &par)
if ( note_list.size() == 0 || Options.use_notes == false )
return;
- text += "\nNotes\n| Turn |Location | Note\n";
+ text += "\nNotes\nTurn | Place | Note\n";
text += "--------------------------------------------------------------\n";
for ( unsigned i = 0; i < note_list.size(); ++i ) {
text += note_list[i].describe();
@@ -1169,7 +1169,7 @@ static bool write_dump(
void display_notes()
{
Menu scr;
- scr.set_title( new MenuEntry("| Turn |Location | Note"));
+ scr.set_title( new MenuEntry("Turn | Place | Note"));
for ( unsigned int i = 0; i < note_list.size(); ++i )
{
std::string prefix = note_list[i].describe(true, true, false);