diff --git a/GLScreen.cs b/GLScreen.cs index 3e16f7f1da..982816931d 100644 --- a/GLScreen.cs +++ b/GLScreen.cs @@ -351,7 +351,9 @@ void main(void) { protected override void OnRenderFrame(FrameEventArgs e) { GL.Viewport(0, 0, 1280, 720); - + + Title = $"Ryujinx Screen - (Vsync: {VSync} - FPS: {1f / e.Time:0})"; + GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit); RenderFb(); diff --git a/Program.cs b/Program.cs index 4816b30e14..79a4f70714 100644 --- a/Program.cs +++ b/Program.cs @@ -9,7 +9,7 @@ namespace Ryujinx { static void Main(string[] args) { - Console.Title = "RyujiNX"; + Console.Title = "Ryujinx Console"; IGalRenderer Renderer = new OpenGLRenderer(); diff --git a/Ryujinx/OsHle/Objects/AudIAudioOut.cs b/Ryujinx/OsHle/Objects/AudIAudioOut.cs index dbb5ecf305..c04a23ad1d 100644 --- a/Ryujinx/OsHle/Objects/AudIAudioOut.cs +++ b/Ryujinx/OsHle/Objects/AudIAudioOut.cs @@ -50,7 +50,7 @@ namespace Ryujinx.OsHle.Objects } catch (Exception) { - Logging.Error("OpenAL Error! PS: Install OpenAL Core SDK!"); + Logging.Warning("OpenAL Error! PS: Install OpenAL Core SDK!"); OpenALInstalled = false; } diff --git a/Ryujinx/OsHle/Services/ServiceNvDrv.cs b/Ryujinx/OsHle/Services/ServiceNvDrv.cs index 83da506446..405eace2b9 100644 --- a/Ryujinx/OsHle/Services/ServiceNvDrv.cs +++ b/Ryujinx/OsHle/Services/ServiceNvDrv.cs @@ -563,7 +563,7 @@ namespace Ryujinx.OsHle.Services NvMap.Kind = Kind; } - Logging.Info($"NvMapIocAlloc at {NvMap.Address:x16}"); + Logging.Debug($"NvMapIocAlloc at {NvMap.Address:x16}"); return 0; }