Forráskód Böngészése

Fix regression introduced by #109

Geoffrey Horsington 4 éve
szülő
commit
fab7cc2599
1 módosított fájl, 2 hozzáadás és 3 törlés
  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)
 				{