From ea3628b9ef51448ff82aa801a0729e61929dfba4 Mon Sep 17 00:00:00 2001 From: dolorous Date: Tue, 6 Jan 2009 18:24:44 +0000 Subject: Add more minor cosmetic fixes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8273 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/itemname.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'crawl-ref/source/itemname.cc') diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc index 7ae8372e2c..064880c298 100644 --- a/crawl-ref/source/itemname.cc +++ b/crawl-ref/source/itemname.cc @@ -155,11 +155,11 @@ std::string item_def::name(description_level_type descrip, { switch (descrip) { - case DESC_CAP_THE: buff << "The "; break; - case DESC_NOCAP_THE: buff << "the "; break; - case DESC_CAP_YOUR: buff << "Your "; break; + case DESC_CAP_THE: buff << "The "; break; + case DESC_NOCAP_THE: buff << "the "; break; + case DESC_CAP_YOUR: buff << "Your "; break; case DESC_NOCAP_YOUR: buff << "your "; break; - case DESC_NOCAP_ITS: buff << "its "; break; + case DESC_NOCAP_ITS: buff << "its "; break; case DESC_CAP_A: case DESC_NOCAP_A: case DESC_INVENTORY_EQUIP: @@ -182,18 +182,18 @@ std::string item_def::name(description_level_type descrip, { switch (descrip) { - case DESC_CAP_THE: buff << "The "; break; - case DESC_NOCAP_THE: buff << "the "; break; - case DESC_CAP_A: buff << (startvowel ? "An " : "A "); break; + case DESC_CAP_THE: buff << "The "; break; + case DESC_NOCAP_THE: buff << "the "; break; + case DESC_CAP_A: buff << (startvowel ? "An " : "A "); break; - case DESC_CAP_YOUR: buff << "Your "; break; + case DESC_CAP_YOUR: buff << "Your "; break; case DESC_NOCAP_YOUR: buff << "your "; break; - case DESC_NOCAP_ITS: buff << "its "; break; + case DESC_NOCAP_ITS: buff << "its "; break; case DESC_NOCAP_A: case DESC_INVENTORY_EQUIP: case DESC_INVENTORY: - buff << (startvowel ? "an " : "a "); break; + buff << (startvowel ? "an " : "a "); break; case DESC_PLAIN: default: -- cgit v1.2.3-54-g00ecf