From cb01def7b71e64136ec58ad2876c8e2ed70ac008 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Fri, 8 Jan 2010 22:53:09 +0100 Subject: Import fix from CVS: Fix princess room allocation. --- changes.txt | 1 + src/generate.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changes.txt b/changes.txt index dcfc095d..b125df1a 100644 --- a/changes.txt +++ b/changes.txt @@ -11,6 +11,7 @@ T.o.M.E 2.3.6 - Fix for loading/saving on Linux distribution using Fortify. - Fix for module directory paths. - Fix miscellaneous problems on 64-bit platforms. +- Princess room should now always be generated. 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; -- cgit v1.2.3