mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-24 05:22:07 +00:00
Revisions for PR
This commit is contained in:
parent
4d17a82393
commit
466cff4849
2 changed files with 10 additions and 10 deletions
|
|
@ -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, "");
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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}");
|
||||
|
|
|
|||
Loading…
Reference in a new issue