浏览代码

Fix title property not existing on some implementations

Bepis 5 年之前
父节点
当前提交
f9fea9f77d
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
 			}