1
0
mirror of synced 2024-11-23 23:21:06 +01:00

0.6.0.7 - Fix judge text drop frame when prev one remove

- Fix judge text drop frame when prev one remove
This commit is contained in:
TenseiWu 2024-10-29 15:54:22 +08:00 committed by GitHub
parent 0e08b2a58a
commit 5b83f7218c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,7 +34,7 @@ internal class CActImplJudgeText : CActivity {
for (int i = 0; i < JudgeAnimes[j].Count; i++) {
var judgeC = JudgeAnimes[j][i];
if (judgeC.counter.CurrentValue == judgeC.counter.EndValue) {
JudgeAnimes[j].Remove(judgeC);
JudgeAnimes[j].RemoveAt(i--);
continue;
}
judgeC.counter.Tick();