summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-23 05:20:45 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-23 05:20:45 +0000
commit5c472f0b3250218241ed1d69fee25a5e4d82441f (patch)
treef406eb05795aa49a6d6f7d3f9204ff64abbc07da /crawl-ref/source
parente1983d461aaa8fbe8f28dd46b02b099f05240ba6 (diff)
downloadcrawl-ref-5c472f0b3250218241ed1d69fee25a5e4d82441f.tar.gz
crawl-ref-5c472f0b3250218241ed1d69fee25a5e4d82441f.zip
Minor type fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3825 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/mstuff2.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 6e15868422..e7349291e3 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -551,7 +551,7 @@ void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast)
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
- int mons = MONS_GIANT_BAT;
+ monster_type mons = MONS_GIANT_BAT;
if (!one_chance_in(3))
{
@@ -734,7 +734,7 @@ void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast)
for (sumcount = 0; sumcount < sumcount2; sumcount++)
{
- const int mons = rand_dragon( DRAGON_LIZARD );
+ const monster_type mons = rand_dragon( DRAGON_LIZARD );
if (mons == MONS_DRAGON)
{
monsters.clear();