mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Fix function name
This commit is contained in:
parent
aa18d5c3ff
commit
530a03cc7d
3 changed files with 3 additions and 3 deletions
|
@ -304,7 +304,7 @@ void PT_TextCmd(SINT8 node, INT32 netconsole)
|
|||
}
|
||||
}
|
||||
|
||||
void SV_CopyNetCommandsToServerPacket(tic_t tic)
|
||||
void CL_CopyNetCommandsFromServerPacket(tic_t tic)
|
||||
{
|
||||
servertics_pak *packet = &netbuffer->u.serverpak;
|
||||
UINT8 *cmds = (UINT8*)&packet->cmds[packet->numslots * packet->numtics];
|
||||
|
|
|
@ -57,7 +57,7 @@ void ExtraDataTicker(void);
|
|||
size_t TotalTextCmdPerTic(tic_t tic);
|
||||
|
||||
void PT_TextCmd(SINT8 node, INT32 netconsole);
|
||||
void SV_CopyNetCommandsToServerPacket(tic_t tic);
|
||||
void CL_CopyNetCommandsFromServerPacket(tic_t tic);
|
||||
void CL_SendNetCommands(void);
|
||||
void SendKick(UINT8 playernum, UINT8 msg);
|
||||
void SendKicksForNode(SINT8 node, UINT8 msg);
|
||||
|
|
|
@ -246,7 +246,7 @@ void PT_ServerTics(SINT8 node, INT32 netconsole)
|
|||
pak = G_ScpyTiccmd(netcmds[i%BACKUPTICS], pak,
|
||||
netbuffer->u.serverpak.numslots*sizeof (ticcmd_t));
|
||||
|
||||
SV_CopyNetCommandsToServerPacket(i);
|
||||
CL_CopyNetCommandsFromServerPacket(i);
|
||||
}
|
||||
|
||||
neededtic = realend;
|
||||
|
|
Loading…
Reference in a new issue