From 3695186a4dfb30c78ec1d82c246d68d094fa8dfd Mon Sep 17 00:00:00 2001 From: Awesomeangotti Date: Sat, 25 Apr 2026 17:31:31 -0400 Subject: [PATCH] Revise naming conventions --- src/Ryujinx/Common/StartupTextHelper.cs | 2 +- src/Ryujinx/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}");