diff --git a/src/Ryujinx/AppHost.cs b/src/Ryujinx/AppHost.cs index c64e831cc..a3e765a2d 100644 --- a/src/Ryujinx/AppHost.cs +++ b/src/Ryujinx/AppHost.cs @@ -1048,6 +1048,7 @@ namespace Ryujinx.Ava if (_viewModel.StartGamesInFullscreen) { _viewModel.WindowState = WindowState.FullScreen; + _viewModel.Window.TitleBar.ExtendsContentIntoTitleBar = true; } if (_viewModel.WindowState is WindowState.FullScreen || _viewModel.StartGamesWithoutUI) diff --git a/src/Ryujinx/UI/Windows/AboutWindow.axaml b/src/Ryujinx/UI/Windows/AboutWindow.axaml index df880160f..2226883fc 100644 --- a/src/Ryujinx/UI/Windows/AboutWindow.axaml +++ b/src/Ryujinx/UI/Windows/AboutWindow.axaml @@ -125,7 +125,7 @@ Background="Transparent" Click="Button_OnClick" CornerRadius="15" - Tag="https://discord.gg/dHPrkBkkyA" + Tag="https://discord.gg/PEuzjrFXUA" ToolTip.Tip="{ext:Locale AboutDiscordUrlTooltipMessage}"> diff --git a/src/Ryujinx/Utilities/AppletMetadata.cs b/src/Ryujinx/Utilities/AppletMetadata.cs index a165487a3..50f01b4c0 100644 --- a/src/Ryujinx/Utilities/AppletMetadata.cs +++ b/src/Ryujinx/Utilities/AppletMetadata.cs @@ -45,7 +45,7 @@ namespace Ryujinx.Ava.Utilities if (string.IsNullOrEmpty(contentPath)) goto BadData; - appData = new() { Name = Name, Id = ProgramId, Path = GetContentPath(contentManager) }; + appData = new() { Name = Name, Id = ProgramId, Path = contentPath }; appControl = StructHelpers.CreateCustomNacpData(Name, Version); return true;