Browse Source

Fix title property not existing on some implementations

Bepis 5 years ago
parent
commit
f9fea9f77d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      BepInEx/Console/Unix/LinuxConsoleDriver.cs

+ 1 - 1
BepInEx/Console/Unix/LinuxConsoleDriver.cs

@@ -94,7 +94,7 @@ namespace BepInEx.Unix
 			if (StdoutRedirected)
 				return;
 
-			if (UseMonoTtyDriver)
+			if (UseMonoTtyDriver && SafeConsole.TitleExists)
 			{
 				SafeConsole.Title = title;
 			}