| 137 | //========================================================================== |
| 138 | |
| 139 | void G_BuildTiccmd(ticcmd_t* cmd) |
| 140 | { |
| 141 | if (sendsave) |
| 142 | { |
| 143 | sendsave = false; |
| 144 | Net_WriteByte(DEM_SAVEGAME); |
| 145 | Net_WriteString(savegamefile.GetChars()); |
| 146 | Net_WriteString(savedescription.GetChars()); |
| 147 | savegamefile = ""; |
| 148 | } |
| 149 | cmd->ucmd = {}; |
| 150 | gameInput.getInput(&cmd->ucmd); |
| 151 | cmd->consistency = consistency[myconnectindex][(maketic / ticdup) % BACKUPTICS]; |
| 152 | } |
| 153 | |
| 154 | //========================================================================== |
| 155 | // |
no test coverage detected