| 1452 | int Debugme = 1; |
| 1453 | |
| 1454 | void DemoReadNewFrame(void) { |
| 1455 | // float our_frametime; |
| 1456 | Gametime = Demo_next_frame; |
| 1457 | Frametime = Demo_frame_time; |
| 1458 | Demo_next_frame = cf_ReadFloat(Demo_cfp); |
| 1459 | Demo_frame_time = cf_ReadFloat(Demo_cfp); |
| 1460 | |
| 1461 | DemoFrameCount++; |
| 1462 | } |
| 1463 | |
| 1464 | void DemoWriteAttachObjRad(object *parent, char parent_ap, object *child, float rad) { |
| 1465 | cf_WriteByte(Demo_cfp, DT_ATTACH); |
no test coverage detected