summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-28 16:30:30 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-28 16:30:30 +0000
commita2ecb4e6a02cf4a93430db3721d12e1044119aa0 (patch)
treee24a4d7599f9e1a92f84fcf4561a5bc51e6ea546 /crawl-ref/source/beam.cc
parent6b287f90359848b3704262348ba58646ed4eee5d (diff)
downloadcrawl-ref-a2ecb4e6a02cf4a93430db3721d12e1044119aa0.tar.gz
crawl-ref-a2ecb4e6a02cf4a93430db3721d12e1044119aa0.zip
[2001518] #ifdefing out a put_colour_ch in the beam routine to fix spurious tiles asterisk when beams are drawn.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6184 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 77b38da599..160113b9dd 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -1968,11 +1968,12 @@ void fire_beam(bolt &pbolt, item_def *item, bool drop_item)
// bounds check
if (in_los_bounds(drawx, drawy))
{
+#ifndef USE_TILE
cgotoxy(drawx, drawy);
put_colour_ch(
pbolt.colour == BLACK ? random_colour() : pbolt.colour,
pbolt.type );
-
+#endif
// Get curses to update the screen so we can see the beam.
update_screen();