aboutsummaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-02-12 00:43:36 -0300
committergdkchan <gab.dark.100@gmail.com>2018-02-12 00:43:36 -0300
commit598d1fd3aedbf740e689976cf50329f402c50539 (patch)
tree47eae8a67c1ffc08bfd949991cc7dc0e495074e5 /Program.cs
parentf3371543907f1ad01a7a4b7566353430d074435d (diff)
Remove Console.Title += since it throws PNSE on linux
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/Program.cs b/Program.cs
index 5569cd49..df1e7c5a 100644
--- a/Program.cs
+++ b/Program.cs
@@ -27,14 +27,12 @@ namespace Ryujinx
{
Logging.Info("Loading as cart with RomFS.");
- Console.Title += " - Cart (with RomFS) - " + args[0];
Ns.Os.LoadCart(args[0], RomFsFiles[0]);
}
else
{
Logging.Info("Loading as cart WITHOUT RomFS.");
- Console.Title += " - Cart (without RomFS) - " + args[0];
Ns.Os.LoadCart(args[0]);
}
}
@@ -42,7 +40,6 @@ namespace Ryujinx
{
Logging.Info("Loading as homebrew.");
- Console.Title += " - Homebrew - " + args[0];
Ns.Os.LoadProgram(args[0]);
}
}