refactor: use popcnt

This commit is contained in:
Anna
2022-06-03 20:12:09 -04:00
parent a5f93fd194
commit 1ffc42b7d2
3 changed files with 5 additions and 13 deletions
+2 -2
View File
@@ -301,9 +301,9 @@ internal sealed class ChatLog : IUiComponent {
return;
}
var bits = NumUtil.NumberOfSetBits((uint) modifier);
var bits = BitOperations.PopCount((uint) modifier);
if (!turnedOff.TryGetValue(key, out var previousBits) || previousBits.Item1 < bits) {
turnedOff[key] = (bits, toIntercept);
turnedOff[key] = ((uint) bits, toIntercept);
}
}