Kaynağa Gözat

Fix regression introduced by #109

Geoffrey Horsington 4 yıl önce
ebeveyn
işleme
fab7cc2599
1 değiştirilmiş dosya ile 2 ekleme ve 3 silme
  1. 2 3
      BepInEx/ConsoleUtil/Kon.cs

+ 2 - 3
BepInEx/ConsoleUtil/Kon.cs

@@ -77,10 +77,9 @@ namespace BepInEx.ConsoleUtil
 						if (!consoleScreenBufferInfo)
 							if (Marshal.GetLastWin32Error() == 6 && !throwOnNoConsole)
 								return default(CONSOLE_SCREEN_BUFFER_INFO);
-							
-							succeeded = true;
-						return console_SCREEN_BUFFER_INFO;
 					}
+					succeeded = true;
+					return console_SCREEN_BUFFER_INFO;
 				}
 				catch (EntryPointNotFoundException)
 				{