Fix non-inverted calculation

This commit is contained in:
smoogipoo 2018-06-14 19:38:48 +09:00
parent a3bf16e481
commit fd84afb89b
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{