diff options
author | Bardur Arantsson <bardur@scientician.net> | 2010-01-08 22:53:09 +0100 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2010-01-08 23:46:24 +0100 |
commit | cb01def7b71e64136ec58ad2876c8e2ed70ac008 (patch) | |
tree | a7df561f2995b57ff4ca1977dbb920d1efa4bd99 /src | |
parent | 2b5ab5e1ff1cf0c97b81850f424b507e8291c7c2 (diff) |
Import fix from CVS: Fix princess room allocation.
Diffstat (limited to 'src')
-rw-r--r-- | src/generate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generate.c b/src/generate.c index b00dcec4..d027cf4e 100644 --- a/src/generate.c +++ b/src/generate.c @@ -1977,7 +1977,7 @@ bool room_alloc(int width, int height, bool crowded, int by0, int bx0, int *cx, for (ebx = bx0 + temp; bx0 > 0 && ebx > dun->col_rooms; bx0--, ebx--); - if (ebx >= dun->col_rooms) return (FALSE); + if (ebx > dun->col_rooms) return (FALSE); /* Total number along height */ temp = ((height - 1) / BLOCK_HGT) + 1; |