summaryrefslogtreecommitdiff
path: root/src/dungeon.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/dungeon.c
parent30b5c52fc1370065bed0ba0a4b22329556fb0592 (diff)
Remove unused parameter from scatter() function.
Diffstat (limited to 'src/dungeon.c')
-rw-r--r--src/dungeon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dungeon.c b/src/dungeon.c
index 8a54329e..6d732f00 100644
--- a/src/dungeon.c
+++ b/src/dungeon.c
@@ -1273,7 +1273,7 @@ static void process_world(void)
/* Summon */
while (1)
{
- scatter(&yy, &xx, p_ptr->py, p_ptr->px, 6, 0);
+ scatter(&yy, &xx, p_ptr->py, p_ptr->px, 6);
/* Accept an empty grid within the boundary */
if (in_bounds(yy, xx) && cave_floor_bold(yy, xx)) break;