fix Clear() operation on that new data structure
This commit is contained in:
parent
432adc7874
commit
9c21601861
|
@ -13,12 +13,13 @@ namespace BizHawk.Common
|
|||
/// </summary>
|
||||
public class NDBDatabase : IDisposable
|
||||
{
|
||||
FileStream Stream;
|
||||
int BlockSize;
|
||||
readonly int BlockSize;
|
||||
readonly long BlockCount;
|
||||
|
||||
Dictionary<string, Item> Items = new Dictionary<string, Item>();
|
||||
LinkedList<Block> FreeList = new LinkedList<Block>();
|
||||
readonly long BlockCount;
|
||||
long FreeWatermark;
|
||||
FileStream Stream;
|
||||
|
||||
class Block
|
||||
{
|
||||
|
@ -74,6 +75,7 @@ namespace BizHawk.Common
|
|||
public void Clear()
|
||||
{
|
||||
Consumed = 0;
|
||||
Items.Clear();
|
||||
FreeList.Clear();
|
||||
FreeWatermark = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue