mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-24 05:22:07 +00:00
Forgot to put a "-" in the title to properly simulate that terraria look
This commit is contained in:
parent
0d5ebffb7e
commit
57200a8a77
1 changed files with 2 additions and 2 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue