From 817c01dee203bea99a24fe4a6be766fac7134d83 Mon Sep 17 00:00:00 2001 From: Awesomeangotti Date: Sat, 25 Apr 2026 14:01:09 -0400 Subject: [PATCH] Bonus round of splash texts before PR --- src/Ryujinx/Common/StartupTextHelper.cs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/Ryujinx/Common/StartupTextHelper.cs b/src/Ryujinx/Common/StartupTextHelper.cs index 98b28755d..eae486de1 100644 --- a/src/Ryujinx/Common/StartupTextHelper.cs +++ b/src/Ryujinx/Common/StartupTextHelper.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; namespace Ryujinx.Common { // My code is crappy and I know it. Props to VewDev for assisting me in these shenanigans. + // In other news, I probably put this in the wrong namespace :kek: - Awesomeangotti public class StartupTextHelper { public static void StartupSplash() @@ -16,7 +17,7 @@ namespace Ryujinx.Common Logger.Notice.Print(LogClass.Application, @"/_/|_| \_, / \_,_/ /_.__//_/ /_//_/ \_, / "); Logger.Notice.Print(LogClass.Application, " /___/ /___/ "); - // Do some randomizing. Literally just put another entry here to allow it to be picked. + // Do some randomizing. Additions are welcome to this list : ) - Awesomeangotti List splashes = new() { "Ryubing is my middle name", @@ -52,6 +53,17 @@ namespace Ryujinx.Common "this.", "Probably contains no baked beans", "Y'all ready for this?", + "Removed herobrine", + "Right to repair!", + "Programmed in C#!", + "Forgejo has dethroned Gitlab!", + "Any ideas what to put here?", + "Good morning!", + "Good afternoon!", + "Good evening!", + "I hope you are having a great day!", + "Please insert disc two!", + "I... AM RYUBING!", }; Random randomobj = new(); int randindex = randomobj.Next(0, splashes.Count);