فهرست منبع

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();