| 488 | } |
| 489 | |
| 490 | void DemoWriteHudMessage(uint32_t color, bool blink, char *msg) { |
| 491 | if (Demo_flags == DF_RECORDING) { |
| 492 | cf_WriteByte(Demo_cfp, DT_HUD_MESSAGE); |
| 493 | cf_WriteInt(Demo_cfp, color); |
| 494 | cf_WriteByte(Demo_cfp, blink ? 1 : 0); |
| 495 | cf_WriteString(Demo_cfp, msg); |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | void DemoWriteChangedObjects() { |
| 500 | int i; |
no test coverage detected