Browse Source

(linux) Disable the console. It's just too broken.

Frank Zago 16 năm trước cách đây
mục cha
commit
c78d48473b
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      CConsoleHandler.cpp

+ 2 - 0
CConsoleHandler.cpp

@@ -227,5 +227,7 @@ void CConsoleHandler::end()
 
 void CConsoleHandler::start()
 {
+#ifdef _WIN32
 	thread = new boost::thread(boost::bind(&CConsoleHandler::run,console));
+#endif
 }