summaryrefslogtreecommitdiff
path: root/src/wild.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wild.cc')
-rw-r--r--src/wild.cc11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/wild.cc b/src/wild.cc
index e87648c4..e9def091 100644
--- a/src/wild.cc
+++ b/src/wild.cc
@@ -189,15 +189,12 @@ static int generate_area(int y, int x, bool_ border, bool_ corner)
/* Hack -- Induce consistant town layout */
Rand_value = wild_map[y][x].seed;
- if (!corner)
+ /* Create level background */
+ for (y1 = 0; y1 < MAX_HGT; y1++)
{
- /* Create level background */
- for (y1 = 0; y1 < MAX_HGT; y1++)
+ for (x1 = 0; x1 < MAX_WID; x1++)
{
- for (x1 = 0; x1 < MAX_WID; x1++)
- {
- cave_set_feat(y1, x1, MAX_WILD_TERRAIN / 2);
- }
+ cave_set_feat(y1, x1, MAX_WILD_TERRAIN / 2);
}
}