summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-26 00:33:26 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-26 00:33:26 +0000
commit9c10577f124eba5a33a0a4b318b9ab93d3aba2fd (patch)
tree6ac164466e0298a634b28b0f427757220164e746 /crawl-ref/source/tags.cc
parenta99482600e234c892e8d0c257c44ebbbef7053b8 (diff)
downloadcrawl-ref-9c10577f124eba5a33a0a4b318b9ab93d3aba2fd.tar.gz
crawl-ref-9c10577f124eba5a33a0a4b318b9ab93d3aba2fd.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9547 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index b494a0031d..007dc9036a 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -2172,7 +2172,7 @@ static void unmarshall_monster(reader &th, monsters &m)
unmarshallSpells(th, m.spells);
- m.god = (god_type) unmarshallByte(th);
+ m.god = static_cast<god_type>( unmarshallByte(th) );
if (m.type == MONS_PLAYER_GHOST || m.type == MONS_PANDEMONIUM_DEMON)
m.set_ghost( unmarshallGhost(th) );