瀏覽代碼

Made console message about typing help display to windows users only since it only works on windows.

devn00b 1 年之前
父節點
當前提交
ec47bba26a
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      EQ2/source/WorldServer/net.cpp

+ 3 - 1
EQ2/source/WorldServer/net.cpp

@@ -386,8 +386,10 @@ int main(int argc, char** argv) {
 #endif
 		//
 
-		// just before starting loops, announce how to get console help
+		// just before starting loops, announce how to get console help (only to windows)
+#ifdef WIN32      
 		LogWrite(WORLD__INFO, 0, "Console", "Type 'help' or '?' and press enter for menu options.");
+#endif      
 
 
 		std::chrono::time_point<std::chrono::system_clock> frame_prev = std::chrono::system_clock::now();