From d8eab24b8b2007ece65256b6f869b7a7c89be875 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Fri, 10 Jan 2020 01:40:55 +0100 Subject: [PATCH] PrintGpuInformation --- Ryujinx.Graphics.OpenGL/Renderer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.Graphics.OpenGL/Renderer.cs b/Ryujinx.Graphics.OpenGL/Renderer.cs index f30587c9..52f7d398 100644 --- a/Ryujinx.Graphics.OpenGL/Renderer.cs +++ b/Ryujinx.Graphics.OpenGL/Renderer.cs @@ -76,12 +76,12 @@ namespace Ryujinx.Graphics.OpenGL public void InitializeCounters() { - GetGpuInformation(); + PrintGpuInformation(); _counters.Initialize(); } - private void GetGpuInformation() + private void PrintGpuInformation() { string gpuVendor = GL.GetString(StringName.Vendor); string gpuRenderer = GL.GetString(StringName.Renderer);