diff --git a/References/RecrownedAthenaeum.dll b/References/RecrownedAthenaeum.dll
index 37272de..75f33e8 100644
Binary files a/References/RecrownedAthenaeum.dll and b/References/RecrownedAthenaeum.dll differ
diff --git a/References/RecrownedAthenaeum.xml b/References/RecrownedAthenaeum.xml
index 4d94792..2841d95 100644
--- a/References/RecrownedAthenaeum.xml
+++ b/References/RecrownedAthenaeum.xml
@@ -806,6 +806,13 @@
Color of all vertices of this rectangle.
Rotation of rectangle. Default is 0 radians.
+
+
+ Draws the given rectangle.
+
+ Uses the x, y and dimensions to draw a rectangle.
+ The color of the rectangle.
+
A batch used to draw primitive shapes by batching together vertices.
@@ -1248,7 +1255,7 @@
The rotation of the image.
-
+
The texture to be rendered.
@@ -1502,7 +1509,12 @@
- Bounds of this module.
+ The bounds before factoring in the origin.
+
+
+
+
+ Bounds of this module (after factoring in the origin).
diff --git a/RhythmBullet/Screens/MainMenu/MainPage.cs b/RhythmBullet/Screens/MainMenu/MainPage.cs
index d732602..14c8cf4 100644
--- a/RhythmBullet/Screens/MainMenu/MainPage.cs
+++ b/RhythmBullet/Screens/MainMenu/MainPage.cs
@@ -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);
}