From 598d1fd3aedbf740e689976cf50329f402c50539 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 12 Feb 2018 00:43:36 -0300 Subject: [PATCH] Remove Console.Title += since it throws PNSE on linux --- Program.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Program.cs b/Program.cs index 5569cd49d..df1e7c5ab 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]); } }