summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/viewchar.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-14 15:36:58 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-14 16:26:02 +0200
commit8b9935cda6ee0d02c5a422174a7148753849a262 (patch)
tree45b3fc89dfc549a2d2b5fd823f5ca30e2d88672e /crawl-ref/source/viewchar.cc
parent66c6931afa780c841299acd2108ac9bb543e980f (diff)
downloadcrawl-ref-8b9935cda6ee0d02c5a422174a7148753849a262.tar.gz
crawl-ref-8b9935cda6ee0d02c5a422174a7148753849a262.zip
Use ÷ for DCHAR_FIRED_BURST.
There's quite a number of effects that try to use it, although most (all?) are explosions and thus the glyph never shown up. With lightning rod displaying it for a sizeable fraction of a second, people suddenly got confused ("Summons doors, possibly inside walls." in learndb). I could easily just change it to DCHAR_FIRED_BEAM ('*') instead. Perhaps _BURST should just be removed?
Diffstat (limited to 'crawl-ref/source/viewchar.cc')
-rw-r--r--crawl-ref/source/viewchar.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/crawl-ref/source/viewchar.cc b/crawl-ref/source/viewchar.cc
index 36c3cee4a1..8beac60088 100644
--- a/crawl-ref/source/viewchar.cc
+++ b/crawl-ref/source/viewchar.cc
@@ -25,8 +25,9 @@ static const ucs_t dchar_table[ NUM_CSET ][ NUM_DCHAR_TYPES ] =
'0', ')', '[', '/', '%', '?', '=', '!', '(',
// § ♣ ©
':', '|', '}', '%', '$', '"', 0xA7, 0x2663, 0xA9,
- ' ', '!', '#', '%', '+', ')', '*', '+', // space .. fired_burst
- '/', '=', '?', 'X', '[', '`', '#' // fi_stick .. explosion
+ // ÷
+ ' ', '!', '#', '%', '+', ')', '*', 0xF7, // space .. fired_burst
+ '/', '=', '?', 'X', '[', '`', '#' // fi_stick .. explosion
},
// CSET_ASCII
{
@@ -47,7 +48,7 @@ static const ucs_t dchar_table[ NUM_CSET ][ NUM_DCHAR_TYPES ] =
'0', ')', '[', '/', '%', '?', '=', '!', '(', // orb .. missile
// ∞ \ ♣ Ω
0x221e, '\\', '}', '%', '$', '"', '#', 0x2663, 0x3a9, // book .. teleporter
- ' ', '!', '#', '%', '+', ')', '*', '+', // space .. fired_burst
+ ' ', '!', '#', '%', '+', ')', '*', 0xF7, // space .. fired_burst
'/', '=', '?', 'X', '[', '`', '#' // fi_stick .. explosion
},
@@ -80,7 +81,8 @@ static const ucs_t dchar_table[ NUM_CSET ][ NUM_DCHAR_TYPES ] =
'0', ')', '[', '/', '%', '?', '=', '!', '(',
// ∞ § ♣ ©
0x221E, '|', '}', '%', '$', '"', 0xA7, 0x2663, 0xA9,
- ' ', '!', '#', '%', '+', ')', '*', '+', // space .. fired_burst
+ // ÷
+ ' ', '!', '#', '%', '+', ')', '*', 0xF7, // space .. fired_burst
'/', '=', '?', 'X', '[', '`', '#' // fi_stick .. explosion
},
};