(svn r14547) -Fix: order pool seemed to look full when it was not as it only checked whether it was possible to allocate a new block of pool items instead of checking for free pool items.

This commit is contained in:
rubidium
2008-10-30 12:32:32 +00:00
parent 38efdc8222
commit ffe155bb2a
3 changed files with 12 additions and 21 deletions

View File

@@ -311,7 +311,7 @@ protected:
}
public:
static bool CanAllocateItem();
static bool CanAllocateItem(uint count = 1);
};