From 5114f782952c819a873912f14083e3caff0be77f Mon Sep 17 00:00:00 2001 From: KP122222 <38231607+KP122222@users.noreply.github.com> Date: Wed, 25 Apr 2018 09:07:32 -0300 Subject: [PATCH] Update GLScreen.cs --- Ryujinx/Ui/GLScreen.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Ryujinx/Ui/GLScreen.cs b/Ryujinx/Ui/GLScreen.cs index 6b6ae6a01..c84b68018 100644 --- a/Ryujinx/Ui/GLScreen.cs +++ b/Ryujinx/Ui/GLScreen.cs @@ -12,7 +12,8 @@ namespace Ryujinx { private const int TouchScreenWidth = 1280; private const int TouchScreenHeight = 720; - + private const int TouchScreenWidth = 1920; + private const int TouchScreenHeight = 1080; private const float TouchScreenRatioX = (float)TouchScreenWidth / TouchScreenHeight; private const float TouchScreenRatioY = (float)TouchScreenHeight / TouchScreenWidth; @@ -21,7 +22,7 @@ namespace Ryujinx private IGalRenderer Renderer; public GLScreen(Switch Ns, IGalRenderer Renderer) - : base(1280, 720, + : base(1280, 720,1920,1080 new GraphicsMode(), "Ryujinx", 0, DisplayDevice.Default, 3, 3, GraphicsContextFlags.ForwardCompatible) @@ -192,4 +193,4 @@ namespace Ryujinx Renderer.SetWindowSize(Width, Height); } } -} \ No newline at end of file +}