From 7696f4706cf8f7e0685f8fe00c342fa32acf4f9d Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Fri, 15 May 2009 18:16:33 +0000 Subject: [PATCH] Add some hopeful helpful text when startserver fails. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3389 --- src/hardware/ipx.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/hardware/ipx.cpp b/src/hardware/ipx.cpp index 4d4e800b..f5c16af4 100644 --- a/src/hardware/ipx.cpp +++ b/src/hardware/ipx.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: ipx.cpp,v 1.15 2008-07-26 14:49:38 qbix79 Exp $ */ +/* $Id: ipx.cpp,v 1.16 2009-05-15 18:16:33 qbix79 Exp $ */ #include "dosbox.h" @@ -951,7 +951,8 @@ public: isIpxServer = true; ConnectToServer("localhost"); } else { - WriteOut("IPX Tunneling Server failed to start\n"); + WriteOut("IPX Tunneling Server failed to start.\n"); + if(udpPort < 1024) WriteOut("Try a port number above 1024. See IPXNET HELP CONNECT on how to specify a port.\n"); } } else { WriteOut("IPX Tunneling Server already started\n");