Fix bug with atch counter.

This commit is contained in:
Ottermandias 2025-01-07 16:10:37 +01:00
parent 7da5d73b47
commit af7a8fbddd

View file

@ -24,5 +24,5 @@ public struct CollectionCounters(int changeCounter)
/// <summary> Increment the number of ATCH-relevant changes in the effective file list. </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public int IncrementAtch()
=> ++Imc;
=> ++Atch;
}