summaryrefslogtreecommitdiff
path: root/src/powers.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/powers.c
parent30b5c52fc1370065bed0ba0a4b22329556fb0592 (diff)
Remove unused parameter from scatter() function.
Diffstat (limited to 'src/powers.c')
-rw-r--r--src/powers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/powers.c b/src/powers.c
index afaf7431..12b2c2c0 100644
--- a/src/powers.c
+++ b/src/powers.c
@@ -773,7 +773,7 @@ static void power_activate(int power)
d = 2;
while (d < 100)
{
- scatter(&y, &x, p_ptr->py, p_ptr->px, d, 0);
+ scatter(&y, &x, p_ptr->py, p_ptr->px, d);
if (cave_floor_bold(y, x) && (!cave[y][x].m_idx)) break;