Revisions for PR

This commit is contained in:
Awesomeangotti 2026-04-25 15:01:58 -04:00 committed by Awesomeangotti
parent 4d17a82393
commit 466cff4849
2 changed files with 10 additions and 10 deletions

View file

@ -1,6 +1,6 @@
using Ryujinx.Common.Logging;
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using Ryujinx.Common.Logging;
using Gommon;
namespace Ryujinx.Common
{
@ -8,7 +8,7 @@ namespace Ryujinx.Common
// In other news, I probably put this in the wrong namespace :kek: - Awesomeangotti
public class StartupTextHelper
{
public static void StartupSplash()
public static void MakeSplash()
{
// Ryubing Logo Print
Logger.Notice.Print(LogClass.Application, " ___ __ _ ");
@ -64,13 +64,13 @@ namespace Ryujinx.Common
"I hope you are having a great day!",
"Please insert disc two!",
"I... AM RYUBING!",
"Ryubingin' it up",
"bing bing wahoo",
};
Random randomobj = new();
int randindex = randomobj.Next(0, splashes.Count);
// Print the dang thing
Logger.Notice.Print(LogClass.Application, "");
Logger.Notice.Print(LogClass.Application, splashes[randindex]);
Logger.Notice.Print(LogClass.Application, splashes.GetRandomElement());
Logger.Notice.Print(LogClass.Application, "");
}

View file

@ -437,8 +437,8 @@ namespace Ryujinx.Ava
internal static void PrintSystemInfo()
{
// The ryubing logo is now called inside this thing.
StartupTextHelper.StartupSplash();
// Print the ryubing logo + joke splash
StartupTextHelper.MakeSplash();
Logger.Notice.Print(LogClass.Application, $"{RyujinxApp.FullAppName} Version: {Version}");
Logger.Notice.Print(LogClass.Application, $".NET Runtime: {RuntimeInformation.FrameworkDescription}");