Fixed command-line netplay

This commit is contained in:
pagefault
2002-06-28 23:39:53 +00:00
parent 7ee189ed43
commit 9d9cfccd8d

View File

@@ -40,7 +40,8 @@ extern unsigned char Palette0, SPC700sh, OffBy1Line, DSPDisable,
romtype, scanlines, showallext, smallscreenon, soundon, romtype, scanlines, showallext, smallscreenon, soundon,
spcon, vsyncon, DisplayS, fname, filefound, SnowOn, spcon, vsyncon, DisplayS, fname, filefound, SnowOn,
NetChatFirst,NetServer,NetNewNick, NetChatFirst,NetServer,NetNewNick,
NetFilename,TCPIPAddress,NetQuitAfter,UDPConfig; NetFilename,CmdLineTCPIPAddress,NetQuitAfter,UDPConfig,
CmdLineNetPlay;
void ccmdline(void); void ccmdline(void);
@@ -178,7 +179,8 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdSh
if (strptr<4) { if (strptr<4) {
NetServer=0; NetServer=0;
} else { } else {
strp=&TCPIPAddress; CmdLineNetPlay = 1;
strp=&CmdLineTCPIPAddress;
strncpy(strp,ExtA[3],28); strncpy(strp,ExtA[3],28);
} }
} }