summaryrefslogtreecommitdiff
path: root/src/cave.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-01-12 00:01:04 +0100
committerBardur Arantsson <bardur@scientician.net>2010-01-12 00:06:45 +0100
commit380a7102efd4233fabfca8a9a0184408bd597ded (patch)
treed2790c34e6f7ecf2559f6473b52df74e3ab3972c /src/cave.c
parentfc2e719c1efc058ed900f363838a4def87e68cbc (diff)
Remove ANGBAND_LITE option.
Diffstat (limited to 'src/cave.c')
-rw-r--r--src/cave.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/cave.c b/src/cave.c
index 12bedde5..97c06c7d 100644
--- a/src/cave.c
+++ b/src/cave.c
@@ -4449,9 +4449,6 @@ static int flow_n = 0;
*/
void forget_flow(void)
{
-
-#ifdef MONSTER_FLOW
-
int x, y;
/* Nothing to forget */
@@ -4470,14 +4467,9 @@ void forget_flow(void)
/* Start over */
flow_n = 0;
-
-#endif
-
}
-#ifdef MONSTER_FLOW
-
/*
* Hack -- Allow us to treat the "seen" array as a queue
*/
@@ -4524,8 +4516,6 @@ static void update_flow_aux(int y, int x, int n)
if (flow_head == flow_tail) flow_head = old_head;
}
-#endif
-
/*
* Hack -- fill in the "cost" field of every grid that the player
@@ -4542,9 +4532,6 @@ static void update_flow_aux(int y, int x, int n)
*/
void update_flow(void)
{
-
-#ifdef MONSTER_FLOW
-
int x, y, d;
/* Hack -- disabled */
@@ -4600,9 +4587,6 @@ void update_flow(void)
/* Forget the flow info */
flow_head = flow_tail = 0;
-
-#endif
-
}