소스 검색

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

Frank Zago 16 년 전
부모
커밋
c78d48473b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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
 }