summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-10-16 17:31:22 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-10-16 23:59:14 +0200
commit90005585c7206655fe91daba91805d9bad2cb0c1 (patch)
tree83f14315cbf89c6f8071a43ff549b7fa6b6e7ddb /crawl-ref/source/view.cc
parent6ca8c092ae24814196a8f76e526637f731fb8160 (diff)
downloadcrawl-ref-90005585c7206655fe91daba91805d9bad2cb0c1.tar.gz
crawl-ref-90005585c7206655fe91daba91805d9bad2cb0c1.zip
Rename struct glyph to cglyph_t.
Hard to come up with something less greppable...
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index b0f1f2f7de..84a3d3040a 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -669,7 +669,7 @@ void view_update_at(const coord_def &pos)
#ifndef USE_TILE_LOCAL
if (!env.map_knowledge(pos).visible())
return;
- glyph g = get_cell_glyph(pos);
+ cglyph_t g = get_cell_glyph(pos);
int flash_colour = you.flash_colour == BLACK
? viewmap_flash_colour()
@@ -891,7 +891,7 @@ static void _draw_out_of_bounds(screen_cell_t *cell)
static void _draw_outside_los(screen_cell_t *cell, const coord_def &gc)
{
// Outside the env.show area.
- glyph g = get_cell_glyph(gc, Options.clean_map);
+ cglyph_t g = get_cell_glyph(gc, Options.clean_map);
cell->glyph = g.ch;
cell->colour = g.col;
@@ -933,7 +933,7 @@ static void _draw_los(screen_cell_t *cell,
const coord_def &gc, const coord_def &ep,
bool anim_updates)
{
- glyph g = get_cell_glyph(gc);
+ cglyph_t g = get_cell_glyph(gc);
cell->glyph = g.ch;
cell->colour = g.col;