Update initial window position
This commit is contained in:
parent
ca04c4b272
commit
3126ed303e
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ namespace Ryujinx
|
||||||
private bool showInactive = true, Paused = false;
|
private bool showInactive = true, Paused = false;
|
||||||
|
|
||||||
public ProfileWindow()
|
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";
|
Title = "Profiler";
|
||||||
sortAction = null;
|
sortAction = null;
|
||||||
BackspaceDownTime = 0;
|
BackspaceDownTime = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue