Update to latest framework version.

This commit is contained in:
Dean Herbert
2016-09-11 02:23:26 +09:00
parent e27eb996bc
commit 4a85d8627d
7 changed files with 17 additions and 16 deletions

View File

@ -12,8 +12,8 @@ namespace osu.Game.Graphics.Processing
protected override void Update()
{
base.Update();
Scale = Parent.ActualSize.Y / 768f;
Size = new Vector2(1 / Scale);
Scale = new Vector2(Parent.ActualSize.Y / 768f);
Size = new Vector2(1 / Scale.X);
}
}
}