diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs index 4f68ca24f..812e53d8c 100644 --- a/src/Ryujinx/Program.cs +++ b/src/Ryujinx/Program.cs @@ -211,6 +211,16 @@ namespace Ryujinx.Ava private static void PrintSystemInfo() { + string executablePath = Environment.ProcessPath; + if (executablePath != null) + { + Logger.Notice.Print(LogClass.Application, $"Ryujinx Path: {executablePath}"); + } + else + { + Logger.Warning?.Print(LogClass.Application, "Can't determine executable path. It might have been renamed or deleted after launch."); + } + Logger.Notice.Print(LogClass.Application, $"Ryujinx Version: {Version}"); SystemInfo.Gather().Print();