summaryrefslogtreecommitdiff
path: root/src/spells2.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-02-18 18:37:22 +0100
committerBardur Arantsson <bardur@scientician.net>2012-03-29 20:57:29 +0200
commitc4928a52cb100f696f2ff54d27a87f2ff2ae37c2 (patch)
treea6b16da01340194b33d67292214d4337cf43187a /src/spells2.c
parent30b5c52fc1370065bed0ba0a4b22329556fb0592 (diff)
Remove unused parameter from scatter() function.
Diffstat (limited to 'src/spells2.c')
-rw-r--r--src/spells2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spells2.c b/src/spells2.c
index d9b53e56..5467499c 100644
--- a/src/spells2.c
+++ b/src/spells2.c
@@ -5098,7 +5098,7 @@ bool_ genocide_aux(bool_ player_cast, char typ)
do
{
- scatter(&wy, &wx, m_ptr->fy, m_ptr->fx, 10, 0);
+ scatter(&wy, &wx, m_ptr->fy, m_ptr->fx, 10);
}
while (!(in_bounds(wy, wx) && cave_floor_bold(wy, wx)) && --attempts);
@@ -5223,7 +5223,7 @@ bool_ mass_genocide(bool_ player_cast)
do
{
- scatter(&wy, &wx, m_ptr->fy, m_ptr->fx, 10, 0);
+ scatter(&wy, &wx, m_ptr->fy, m_ptr->fx, 10);
}
while (!(in_bounds(wy, wx) && cave_floor_bold(wy, wx)) && --attempts);