Fix setting resetting every time

This commit is contained in:
sunshineinabox 2023-10-13 21:44:59 -07:00
parent 146a8990f2
commit 5008fb46c8
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ namespace Ryujinx.Ui.Common.Configuration
/// <summary>
/// The current version of the file format
/// </summary>
public const int CurrentVersion = 48;
public const int CurrentVersion = 49;
/// <summary>
/// Version of the configuration file format

View file

@ -1445,7 +1445,7 @@ namespace Ryujinx.Ui.Common.Configuration
if (configurationFileFormat.Version < 49)
{
Ryujinx.Common.Logging.Logger.Warning?.Print(LogClass.Application, $"Outdated configuration version {configurationFileFormat.Version}, migrating to version 48.");
Ryujinx.Common.Logging.Logger.Warning?.Print(LogClass.Application, $"Outdated configuration version {configurationFileFormat.Version}, migrating to version 49.");
configurationFileFormat.EnableOGLSpirV = false;