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

@ -46,7 +46,7 @@ namespace osu.Game
//};
//API.Queue(req);
AddProcessingContainer(new RatioAdjust());
AddProcessing(new RatioAdjust());
//Add(new FontTest());
@ -62,10 +62,10 @@ namespace osu.Game
base.Dispose(isDisposing);
}
public override bool Invalidate(bool affectsSize = true, bool affectsPosition = true, Drawable source = null)
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
{
if (!base.Invalidate(affectsSize, affectsPosition, source)) return false;
if (!base.Invalidate(invalidation, source, shallPropagate)) return false;
if (Parent != null)
{
Parent.Width = Config.Set(OsuConfig.Width, ActualSize.X).Value;