1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

Merge pull request #25787 from cl8n/fix-mania-column-color

Fix fallback column colors for legacy split stage mania skins
This commit is contained in:
Dean Herbert 2023-12-16 20:19:02 +09:00 committed by GitHub
commit b0814400c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,9 @@ namespace osu.Game.Rulesets.Mania.Skinning.Legacy
FallbackColumnIndex = "S"; FallbackColumnIndex = "S";
else else
{ {
int distanceToEdge = Math.Min(Column.Index, (stage.Columns - 1) - Column.Index); // Account for cases like dual-stage (assume that all stages have the same column count for now).
int columnInStage = Column.Index % stage.Columns;
int distanceToEdge = Math.Min(columnInStage, (stage.Columns - 1) - columnInStage);
FallbackColumnIndex = distanceToEdge % 2 == 0 ? "1" : "2"; FallbackColumnIndex = distanceToEdge % 2 == 0 ? "1" : "2";
} }
} }