From c6250e1da52bbf19b865baf75f0e86e96fc5da2f Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sun, 23 Jul 2017 11:34:09 +0900 Subject: [PATCH] Supress compiler warning I don't think this is a sustainable solution if we start doing this in more places. --- osu.Game/Screens/Tournament/ScrollingTeamContainer.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/osu.Game/Screens/Tournament/ScrollingTeamContainer.cs b/osu.Game/Screens/Tournament/ScrollingTeamContainer.cs index 8920ca2be8..ae0f6e4b3f 100644 --- a/osu.Game/Screens/Tournament/ScrollingTeamContainer.cs +++ b/osu.Game/Screens/Tournament/ScrollingTeamContainer.cs @@ -28,7 +28,11 @@ namespace osu.Game.Screens.Tournament private readonly Container tracker; +#pragma warning disable 649 + // set via reflection. private float speed; +#pragma warning restore 649 + private int expiredCount; private float offset;