Update initial window position

This commit is contained in:
Andy Adshead 2019-01-26 20:08:44 +00:00
parent ca04c4b272
commit 3126ed303e

View file

@ -43,9 +43,9 @@ namespace Ryujinx
private bool showInactive = true, Paused = false;
public ProfileWindow()
: base(400, 720)
: base(1280, 720)
{
Location = new Point(DisplayDevice.Default.Width - 400, (DisplayDevice.Default.Height - 720) / 2);
Location = new Point(DisplayDevice.Default.Width - 1280, (DisplayDevice.Default.Height - 720) - 50);
Title = "Profiler";
sortAction = null;
BackspaceDownTime = 0;