Fixed Commit count issue.

This commit is contained in:
Anish Bhobe 2025-04-02 21:55:05 +02:00
parent 8f9b6d66be
commit ec6aeb6f3b
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ class CommitManager
Entry &data = m_FreeList.Pop();
data.mKey = object;
data.m_CommitCount = 1;
data.m_CommitCount = 0;
m_InUse.insert(data);