Bläddra i källkod

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

devn00b 1 år sedan
förälder
incheckning
ec47bba26a
1 ändrade filer med 3 tillägg och 1 borttagningar
  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();