Просмотр исходного кода

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

devn00b 1 год назад
Родитель
Сommit
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();