diff --git a/src/Ryujinx/Common/StartupTextHelper.cs b/src/Ryujinx/Common/StartupTextHelper.cs index e3d60ffeb..02f4de498 100644 --- a/src/Ryujinx/Common/StartupTextHelper.cs +++ b/src/Ryujinx/Common/StartupTextHelper.cs @@ -7,7 +7,7 @@ namespace Ryujinx.Common // My code is crappy and I know it. Props to VewDev for assisting me in these shenanigans. - Awesomeangotti public class StartupTextHelper { - public static void MakeSplash() + public static void PrintSplash() { Logger.Notice.Print(LogClass.Application, " ___ __ _ "); Logger.Notice.Print(LogClass.Application, @" / _ \ __ __ __ __ / / (_) ___ ___ _"); diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs index ff8e16935..9b0f5830b 100644 --- a/src/Ryujinx/Program.cs +++ b/src/Ryujinx/Program.cs @@ -438,7 +438,7 @@ namespace Ryujinx.Ava internal static void PrintSystemInfo() { // Print the ryubing logo + joke splash - StartupTextHelper.MakeSplash(); + StartupTextHelper.PrintSplash(); Logger.Notice.Print(LogClass.Application, $"{RyujinxApp.FullAppName} Version: {Version}"); Logger.Notice.Print(LogClass.Application, $".NET Runtime: {RuntimeInformation.FrameworkDescription}");