diff --git a/CONFIG.md b/CONFIG.md index 003fc2408e..bc5ad9ab4d 100644 --- a/CONFIG.md +++ b/CONFIG.md @@ -1,6 +1,6 @@ ## Config File -`Config.json` should be present in executable folder. The available settings follow: +`Config.jsonc` should be present in executable folder. The available settings follow: - `Logging_Enable_Info` *(bool)* diff --git a/README.md b/README.md index 2ec0ddfdbe..10279b5055 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ or just drag'n'drop the homebrew *.NRO / *.NSO or the game *.NSP / *.XCI on the - Controller Input is supported, see [CONFIG.md](CONFIG.md) - - Config File: `Config.json` should be present in executable folder. + - Config File: `Config.jsonc` should be present in executable folder. For more information [you can go here](CONFIG.md). **Help** diff --git a/Ryujinx/Config.json b/Ryujinx/Config.jsonc similarity index 100% rename from Ryujinx/Config.json rename to Ryujinx/Config.jsonc diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs index 81b0472a0f..19916fe9f4 100644 --- a/Ryujinx/Program.cs +++ b/Ryujinx/Program.cs @@ -20,7 +20,7 @@ namespace Ryujinx Switch device = new Switch(renderer, audioOut); - Configuration.Load("Config.json"); + Configuration.Load("Config.jsonc"); Configuration.Configure(device); AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException; diff --git a/Ryujinx/Ryujinx.csproj b/Ryujinx/Ryujinx.csproj index 3686782e13..0872584643 100644 --- a/Ryujinx/Ryujinx.csproj +++ b/Ryujinx/Ryujinx.csproj @@ -20,7 +20,7 @@ - + PreserveNewest