From d4a3e8267bddc5bf8ad2eb1e76b2ef15d4cbda2c Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 20 Mar 2018 18:42:13 -0300 Subject: Allow enabling/disabling memory checks on config file --- Ryujinx.Core/Config.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Ryujinx.Core/Config.cs') diff --git a/Ryujinx.Core/Config.cs b/Ryujinx.Core/Config.cs index c9a76de3..1e1cb3c7 100644 --- a/Ryujinx.Core/Config.cs +++ b/Ryujinx.Core/Config.cs @@ -9,6 +9,7 @@ namespace Ryujinx.Core { public static class Config { + public static bool EnableMemoryChecks { get; private set; } public static bool LoggingEnableInfo { get; private set; } public static bool LoggingEnableTrace { get; private set; } public static bool LoggingEnableDebug { get; private set; } @@ -26,6 +27,7 @@ namespace Ryujinx.Core var iniPath = Path.Combine(iniFolder, "Ryujinx.conf"); IniParser Parser = new IniParser(iniPath); + EnableMemoryChecks = Convert.ToBoolean(Parser.Value("Enable_Memory_Checks")); LoggingEnableInfo = Convert.ToBoolean(Parser.Value("Logging_Enable_Info")); LoggingEnableTrace = Convert.ToBoolean(Parser.Value("Logging_Enable_Trace")); LoggingEnableDebug = Convert.ToBoolean(Parser.Value("Logging_Enable_Debug")); -- cgit v1.2.3