summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tile1.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 11:32:54 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 11:32:54 +0000
commit7fce9b7324c77c16c310e76a6d697e6f84fc9398 (patch)
tree061bcb63c57c1281473a289e22041cb93259feca /crawl-ref/source/tile1.cc
parentead36b3ba490fb199815ccc048ba204e5bbee30e (diff)
downloadcrawl-ref-7fce9b7324c77c16c310e76a6d697e6f84fc9398.tar.gz
crawl-ref-7fce9b7324c77c16c310e76a6d697e6f84fc9398.zip
Fix 1948131: Quiver slot name wraps around the screen.
Also fixes tile issues where the inventory was partly covered or not shown at all. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5844 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tile1.cc')
-rw-r--r--crawl-ref/source/tile1.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/tile1.cc b/crawl-ref/source/tile1.cc
index c540f3b3ba..2f0c3f9aae 100644
--- a/crawl-ref/source/tile1.cc
+++ b/crawl-ref/source/tile1.cc
@@ -34,8 +34,8 @@ static FixedArray < unsigned int, GXM, GYM > tile_dngn;
bool is_bazaar()
{
- return (you.level_type == LEVEL_PORTAL_VAULT &&
- you.level_type_name == "bazaar");
+ return (you.level_type == LEVEL_PORTAL_VAULT
+ && you.level_type_name == "bazaar");
}
unsigned short get_bazaar_special_colour()
@@ -391,7 +391,7 @@ static int _tileidx_monster_base(int mon_idx, bool detected)
{
// Use item tile
item_def item = mitm[menv[mon_idx].inv[MSLOT_WEAPON]];
- return tileidx_item(item) | TILE_FLAG_ANIM_WEP;
+ return tileidx_item(item) | TILE_FLAG_ANIM_WEP;
}
case MONS_TITAN: