Remove redundant prefix

This commit is contained in:
Dean Herbert 2018-01-04 16:31:41 +09:00
parent 152b846cff
commit c8ec27c4de
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ private class ScaledContainer : Container
protected override void Update() protected override void Update()
{ {
base.Update(); base.Update();
RelativeChildSize = new Vector2(DrawScale.X, base.RelativeChildSize.Y); RelativeChildSize = new Vector2(DrawScale.X, RelativeChildSize.Y);
} }
} }
} }