mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 17:22:58 +08:00
Add non-null assertion missing in BeatmapScoreRow
This commit is contained in:
parent
5c6fa2341f
commit
467f83b603
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
|
using System.Diagnostics;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
@ -135,6 +136,8 @@ namespace osu.Game.Tournament.Screens.TeamIntro
|
|||||||
{
|
{
|
||||||
public BeatmapScoreRow(SeedingBeatmap beatmap)
|
public BeatmapScoreRow(SeedingBeatmap beatmap)
|
||||||
{
|
{
|
||||||
|
Debug.Assert(beatmap.Beatmap != null);
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.X;
|
RelativeSizeAxes = Axes.X;
|
||||||
AutoSizeAxes = Axes.Y;
|
AutoSizeAxes = Axes.Y;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user