Title now works. holy poop.

This commit is contained in:
2019-03-01 23:30:43 -06:00
parent 653a7de562
commit d9a5935cc6
3 changed files with 18 additions and 3 deletions

View File

@@ -37,7 +37,10 @@ namespace RhythmBullet.Screens.MainMenu
public override void ApplySize(int width, int height)
{
title.Scale = (width - 40) / title.Texture.Width;
title.Scale = (width - 40) / title.texture.Width;
title.CenterOrigin();
title.bounds.X = width / 2;
title.bounds.Y = height / 2;
base.ApplySize(width, height);
}