Browse Source

[hellfire] NetSendCmdGItem2 binexact (#2148)

* [hellfire] NetSendCmdGItem2 binexact
pull/914/head
SourceCodeDeleted 5 years ago committed by GitHub
parent
commit
e5c2744b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Source/msg.cpp

4
Source/msg.cpp

@ -1084,7 +1084,11 @@ BOOL NetSendCmdReq2(BYTE bCmd, BYTE mast, BYTE pnum, TCmdGItem *p)
int ticks;
TCmdGItem cmd;
#ifdef HELLFIRE
cmd = *p;
#else
memcpy(&cmd, p, sizeof(cmd));
#endif
cmd.bCmd = bCmd;
cmd.bPnum = pnum;
cmd.bMaster = mast;

Loading…
Cancel
Save