mirror of https://github.com/ppy/osu
Fix non-inverted calculation
This commit is contained in:
parent
a3bf16e481
commit
fd84afb89b
|
@ -361,7 +361,7 @@ private int getRandomNoteCountMirrored(double centreProbability, double p2, doub
|
|||
addToCentre = false;
|
||||
|
||||
if ((convertType & PatternType.ForceNotStack) > 0)
|
||||
return getRandomNoteCount(p2 / 2, p2, (p2 + p3) / 2, p3);
|
||||
return getRandomNoteCount(1 / 2f + p2 / 2, p2, (p2 + p3) / 2, p3);
|
||||
|
||||
switch (TotalColumns)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue