mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
Fix migrated config on non-Windows OS
This commit is contained in:
parent
4a32ebcc8d
commit
e0cc2a6eed
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue