| 573 | } |
| 574 | |
| 575 | float decodeyaw(int r) |
| 576 | { |
| 577 | r &= (1 << YAWBITS) - 1; |
| 578 | return float(r) / (1 << YAWBITS) * 360.0f; |
| 579 | } |
| 580 | |
| 581 | static const int msgsizes[] = // size inclusive message token, 0 for variable or not-checked sizes |
| 582 | { |
no outgoing calls
no test coverage detected