mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-24 06:39:53 -06:00
config bugfix (#6)
Include Ryujinx.conf file to the build folder. Fix the Ryujinx.conf filepath.
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Ryujinx
|
||||
{
|
||||
@ -17,7 +18,7 @@ namespace Ryujinx
|
||||
|
||||
public static void Read()
|
||||
{
|
||||
IniParser Parser = new IniParser("Ryujinx.conf");
|
||||
IniParser Parser = new IniParser(Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location), "Ryujinx.conf"));
|
||||
|
||||
LoggingEnableInfo = Convert.ToBoolean(Parser.Value("Logging_Enable_Info"));
|
||||
LoggingEnableTrace = Convert.ToBoolean(Parser.Value("Logging_Enable_Trace"));
|
||||
|
Reference in New Issue
Block a user