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.cc16
1 files changed, 4 insertions, 12 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 2e9b77c446..1303d72551 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -899,8 +899,8 @@ static std::string _level_description_string_hud()
short_name += make_stringf(":%d", player_branch_depth());
}
// Indefinite articles
- else if ( place.level_type == LEVEL_PORTAL_VAULT
- || place.level_type == LEVEL_LABYRINTH)
+ else if (place.level_type == LEVEL_PORTAL_VAULT
+ || place.level_type == LEVEL_LABYRINTH)
{
if (you.level_type_name == "bazaar")
short_name = "A Bazaar";
@@ -1481,16 +1481,8 @@ const char* itosym3(int stat)
static const char *s_equip_slot_names[] =
{
- "Weapon",
- "Cloak",
- "Helmet",
- "Gloves",
- "Boots",
- "Shield",
- "Armour",
- "Left Ring",
- "Right Ring",
- "Amulet",
+ "Weapon", "Cloak", "Helmet", "Gloves", "Boots",
+ "Shield", "Armour", "Left Ring", "Right Ring", "Amulet",
};
const char *equip_slot_to_name(int equip)