From 021ed3f44e417077aa460947c26e9220ac5ca5e1 Mon Sep 17 00:00:00 2001
From: Ac_K <Acoustik666@gmail.com>
Date: Fri, 10 Jan 2020 01:41:49 +0100
Subject: [PATCH] InitializeCounters to Initialize

---
 Ryujinx.Graphics.GAL/IRenderer.cs   | 2 +-
 Ryujinx.Graphics.OpenGL/Renderer.cs | 2 +-
 Ryujinx/Ui/GLScreen.cs              | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Ryujinx.Graphics.GAL/IRenderer.cs b/Ryujinx.Graphics.GAL/IRenderer.cs
index 4f3ef6d1ae..1139ba0609 100644
--- a/Ryujinx.Graphics.GAL/IRenderer.cs
+++ b/Ryujinx.Graphics.GAL/IRenderer.cs
@@ -24,7 +24,7 @@ namespace Ryujinx.Graphics.GAL
 
         ulong GetCounter(CounterType type);
 
-        void InitializeCounters();
+        void Initialize();
 
         void ResetCounter(CounterType type);
     }
diff --git a/Ryujinx.Graphics.OpenGL/Renderer.cs b/Ryujinx.Graphics.OpenGL/Renderer.cs
index 52f7d398d2..29a0ea2954 100644
--- a/Ryujinx.Graphics.OpenGL/Renderer.cs
+++ b/Ryujinx.Graphics.OpenGL/Renderer.cs
@@ -74,7 +74,7 @@ namespace Ryujinx.Graphics.OpenGL
             return _counters.GetCounter(type);
         }
 
-        public void InitializeCounters()
+        public void Initialize()
         {
             PrintGpuInformation();
 
diff --git a/Ryujinx/Ui/GLScreen.cs b/Ryujinx/Ui/GLScreen.cs
index f1249d642c..6c0c28586b 100644
--- a/Ryujinx/Ui/GLScreen.cs
+++ b/Ryujinx/Ui/GLScreen.cs
@@ -70,7 +70,7 @@ namespace Ryujinx.Ui
         {
             MakeCurrent();
 
-            _renderer.InitializeCounters();
+            _renderer.Initialize();
 
             Stopwatch chrono = new Stopwatch();