summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-overview.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-01-24 13:45:04 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-01-24 13:45:04 +0000
commite7a06b06df3d43da9221af9fa14841db5fda699d (patch)
treef55827ed2f5f8d36e211b955f18fefea102a162d /crawl-ref/source/dgn-overview.cc
parent81aee59235ac630e21fad2f056bdd82b23943ad2 (diff)
downloadcrawl-ref-e7a06b06df3d43da9221af9fa14841db5fda699d.tar.gz
crawl-ref-e7a06b06df3d43da9221af9fa14841db5fda699d.zip
Capitalise "The Shining One" on the overview and in character dumps
Since it's the start of a sentence in those places.
Diffstat (limited to 'crawl-ref/source/dgn-overview.cc')
-rw-r--r--crawl-ref/source/dgn-overview.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dgn-overview.cc b/crawl-ref/source/dgn-overview.cc
index 6509dd6159..62d18f3be5 100644
--- a/crawl-ref/source/dgn-overview.cc
+++ b/crawl-ref/source/dgn-overview.cc
@@ -445,7 +445,7 @@ static string _print_altars_for_gods(const vector<god_type>& gods,
if (!display)
{
if (has_altar_been_seen)
- disp += god_name(god, false) + "\n";
+ disp += uppercase_first(god_name(god, false)) + "\n";
continue;
}
@@ -470,7 +470,7 @@ static string _print_altars_for_gods(const vector<god_type>& gods,
colour = "darkgrey";
snprintf(buffer, sizeof buffer, "<%s>%s</%s>",
- colour, god_name(god, false).c_str(), colour);
+ colour, uppercase_first(god_name(god, false)).c_str(), colour);
disp += buffer;
num_printed++;