mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-15 07:00:32 +00:00
Added log message to GTK version too
This commit is contained in:
parent
1e6c1f1236
commit
3e3eb365f8
1 changed files with 10 additions and 0 deletions
|
@ -338,6 +338,16 @@ namespace Ryujinx
|
||||||
|
|
||||||
private static void PrintSystemInfo()
|
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}");
|
Logger.Notice.Print(LogClass.Application, $"Ryujinx Version: {Version}");
|
||||||
SystemInfo.Gather().Print();
|
SystemInfo.Gather().Print();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue