Forgot to put a "-" in the title to properly simulate that terraria look

This commit is contained in:
Awesomeangotti 2026-04-25 17:13:45 -04:00 committed by Awesomeangotti
parent 0d5ebffb7e
commit 57200a8a77

View file

@ -28,8 +28,8 @@ namespace Ryujinx.Ava
internal static string FormatTitle(LocaleKeys? windowTitleKey = null, bool includeVersion = true)
=> windowTitleKey is null
? $"{FullAppName}{(includeVersion ? $" {Program.Version}" : string.Empty)} {StartupTextHelper.MainSplashes.GetRandomElement()}"
: $"{FullAppName}{(includeVersion ? $" {Program.Version}" : string.Empty)} - {LocaleManager.Instance[windowTitleKey.Value]} {StartupTextHelper.MainSplashes.GetRandomElement()}";
? $"{FullAppName}{(includeVersion ? $" {Program.Version}" : string.Empty)} - {StartupTextHelper.MainSplashes.GetRandomElement()}"
: $"{FullAppName}{(includeVersion ? $" {Program.Version}" : string.Empty)} - {LocaleManager.Instance[windowTitleKey.Value]} - {StartupTextHelper.MainSplashes.GetRandomElement()}";
public static readonly string FullAppName = string.Intern(ReleaseInformation.IsCanaryBuild ? "Ryujinx Canary" : "Ryujinx");