mirror of
https://github.com/osukey/osukey.git
synced 2025-06-03 11:57:36 +09:00
Fix mania frame conversion not working at all
This commit is contained in:
parent
e869f7d05b
commit
c783a19e41
@ -41,12 +41,15 @@ namespace osu.Game.Rulesets.Mania.Replays
|
||||
int counter = 0;
|
||||
while (activeColumns > 0)
|
||||
{
|
||||
Actions.Add((activeColumns & 1) > 0 ? specialAction : normalAction);
|
||||
var isSpecial = stage.IsSpecialColumn(counter);
|
||||
|
||||
if (stage.IsSpecialColumn(counter))
|
||||
normalAction++;
|
||||
else
|
||||
if ((activeColumns & 1) > 0)
|
||||
Actions.Add(isSpecial ? specialAction : normalAction);
|
||||
|
||||
if (isSpecial)
|
||||
specialAction++;
|
||||
else
|
||||
normalAction++;
|
||||
|
||||
counter++;
|
||||
activeColumns >>= 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user