Fix migrated config on non-Windows OS

This commit is contained in:
Luke Warner 2024-10-28 20:17:31 -04:00
parent 4a32ebcc8d
commit e0cc2a6eed

View File

@ -1552,7 +1552,7 @@ namespace Ryujinx.UI.Common.Configuration
{
Ryujinx.Common.Logging.Logger.Warning?.Print(LogClass.Application, $"Outdated configuration version {configurationFileFormat.Version}, migrating to version 56.");
configurationFileFormat.ShowTitleBar = false;
configurationFileFormat.ShowTitleBar = (OperatingSystem.IsWindows()) ? false : true;
configurationFileUpdated = true;
}