mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-17 07:48:48 +01:00
Remove Console.Title += since it throws PNSE on linux
This commit is contained in:
parent
f337154390
commit
598d1fd3ae
1 changed files with 0 additions and 3 deletions
|
@ -27,14 +27,12 @@ namespace Ryujinx
|
||||||
{
|
{
|
||||||
Logging.Info("Loading as cart with RomFS.");
|
Logging.Info("Loading as cart with RomFS.");
|
||||||
|
|
||||||
Console.Title += " - Cart (with RomFS) - " + args[0];
|
|
||||||
Ns.Os.LoadCart(args[0], RomFsFiles[0]);
|
Ns.Os.LoadCart(args[0], RomFsFiles[0]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Logging.Info("Loading as cart WITHOUT RomFS.");
|
Logging.Info("Loading as cart WITHOUT RomFS.");
|
||||||
|
|
||||||
Console.Title += " - Cart (without RomFS) - " + args[0];
|
|
||||||
Ns.Os.LoadCart(args[0]);
|
Ns.Os.LoadCart(args[0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -42,7 +40,6 @@ namespace Ryujinx
|
||||||
{
|
{
|
||||||
Logging.Info("Loading as homebrew.");
|
Logging.Info("Loading as homebrew.");
|
||||||
|
|
||||||
Console.Title += " - Homebrew - " + args[0];
|
|
||||||
Ns.Os.LoadProgram(args[0]);
|
Ns.Os.LoadProgram(args[0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue