summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 7139e58392..fc199d1ad5 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -432,7 +432,7 @@ static void _print_stats_wp(int y)
cprintf("%s",
wpn.name(DESC_INVENTORY, true)
- .substr(0, crawl_view.hudsz.x - 5).c_str());
+ .substr(0, crawl_view.hudsz.x - 4).c_str());
textcolor(LIGHTGREY);
}
else
@@ -473,7 +473,7 @@ static void _print_stats_qv(int y)
cprintf("%s",
quiver.name(DESC_INVENTORY, true)
- .substr(0, crawl_view.hudsz.x - 5)
+ .substr(0, crawl_view.hudsz.x - 4)
.c_str());
textcolor(LIGHTGREY);
}
@@ -1093,9 +1093,10 @@ _print_next_monster_desc(const std::vector<monster_pane_info>& mons, int& start)
cprintf(" ");
textbackground(dam_color);
textcolor(dam_color);
- cprintf(" ");
- textcolor(LIGHTGREY);
+ // Temporary, to diagnose 1933260
+ cprintf("_");
textbackground(BLACK);
+ textcolor(LIGHTGREY);
cprintf(" ");
printed += 3;
}