Merge pull request #20009 from frenzibyte/fix-back-to-front-comparison

Adjust weirdly back-to-front fallback comparison in `HitObjectOrderedSelectionContainer`
This commit is contained in:
Dean Herbert 2022-08-31 14:14:10 +09:00 committed by GitHub
commit cfc7c32aff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
if (result != 0) return result; if (result != 0) return result;
} }
return CompareReverseChildID(y, x); return CompareReverseChildID(x, y);
} }
protected override void Dispose(bool isDisposing) protected override void Dispose(bool isDisposing)