From b3a4662be15bd63d5b70cf4be21d79959e11ccfc Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Wed, 17 Oct 2018 14:15:50 -0300 Subject: Move logging to Ryujinx.Common and make it a static class (#413) --- Ryujinx.HLE/Switch.cs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Ryujinx.HLE/Switch.cs') diff --git a/Ryujinx.HLE/Switch.cs b/Ryujinx.HLE/Switch.cs index a3f874ee..fe0be6ce 100644 --- a/Ryujinx.HLE/Switch.cs +++ b/Ryujinx.HLE/Switch.cs @@ -4,7 +4,6 @@ using Ryujinx.Graphics.Gal; using Ryujinx.HLE.FileSystem; using Ryujinx.HLE.HOS; using Ryujinx.HLE.Input; -using Ryujinx.HLE.Logging; using Ryujinx.HLE.Memory; using System; using System.Threading; @@ -15,8 +14,6 @@ namespace Ryujinx.HLE { internal IAalOutput AudioOut { get; private set; } - public Logger Log { get; private set; } - internal DeviceMemory Memory { get; private set; } internal NvGpu Gpu { get; private set; } @@ -49,8 +46,6 @@ namespace Ryujinx.HLE this.AudioOut = AudioOut; - Log = new Logger(); - Memory = new DeviceMemory(); Gpu = new NvGpu(Renderer); -- cgit v1.2.3