From c6f22318a7f1a259381ff622e68a5fdda43579b8 Mon Sep 17 00:00:00 2001 From: GreemDev Date: Mon, 11 Aug 2025 18:06:53 -0500 Subject: [PATCH] add an ASCII header at startup in the log --- src/Ryujinx/Program.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs index 09759d7cc..db9ae21eb 100644 --- a/src/Ryujinx/Program.cs +++ b/src/Ryujinx/Program.cs @@ -301,6 +301,13 @@ namespace Ryujinx.Ava internal static void PrintSystemInfo() { + Logger.Notice.Print(LogClass.Application, " ___ __ _ "); + Logger.Notice.Print(LogClass.Application, @" / _ \ __ __ __ __ / / (_) ___ ___ _"); + Logger.Notice.Print(LogClass.Application, @" / , _/ / // // // / / _ \ / / / _ \ / _ `/"); + Logger.Notice.Print(LogClass.Application, @"/_/|_| \_, / \_,_/ /_.__//_/ /_//_/ \_, / "); + Logger.Notice.Print(LogClass.Application, " /___/ /___/ "); + + Logger.Notice.Print(LogClass.Application, $"{RyujinxApp.FullAppName} Version: {Version}"); Logger.Notice.Print(LogClass.Application, $".NET Runtime: {RuntimeInformation.FrameworkDescription}"); SystemInfo.Gather().Print();