mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 04:02:57 +08:00
CI fixes
This commit is contained in:
parent
0baceaaf0d
commit
59a0343c01
@ -14,7 +14,7 @@ namespace osu.Game.Screens.Menu
|
|||||||
{
|
{
|
||||||
public class IntroSequence : Container
|
public class IntroSequence : Container
|
||||||
{
|
{
|
||||||
private OsuSpriteText welcomeText;
|
private readonly OsuSpriteText welcomeText;
|
||||||
|
|
||||||
private readonly OsuLogo logo;
|
private readonly OsuLogo logo;
|
||||||
|
|
||||||
@ -282,8 +282,8 @@ namespace osu.Game.Screens.Menu
|
|||||||
|
|
||||||
private class Ring : Container<CircularContainer>
|
private class Ring : Container<CircularContainer>
|
||||||
{
|
{
|
||||||
public CircularContainer Background;
|
public readonly CircularContainer Background;
|
||||||
public CircularContainer Foreground;
|
public readonly CircularContainer Foreground;
|
||||||
|
|
||||||
public Ring(Color4 ringColour)
|
public Ring(Color4 ringColour)
|
||||||
{
|
{
|
||||||
|
@ -12,13 +12,12 @@ namespace osu.Game.Tests.Visual
|
|||||||
{
|
{
|
||||||
internal class TestCaseIntro : OsuTestCase
|
internal class TestCaseIntro : OsuTestCase
|
||||||
{
|
{
|
||||||
private readonly IntroSequence intro;
|
|
||||||
|
|
||||||
public TestCaseIntro()
|
public TestCaseIntro()
|
||||||
{
|
{
|
||||||
|
IntroSequence intro;
|
||||||
|
|
||||||
var rateAdjustClock = new StopwatchClock(true);
|
var rateAdjustClock = new StopwatchClock(true);
|
||||||
var framedClock = new FramedClock(rateAdjustClock);
|
var framedClock = new FramedClock(rateAdjustClock);
|
||||||
|
|
||||||
framedClock.ProcessFrame();
|
framedClock.ProcessFrame();
|
||||||
|
|
||||||
Add(new Container
|
Add(new Container
|
||||||
|
Loading…
Reference in New Issue
Block a user