Return the size in bytes of a reference (pointer) */
| 658 | |
| 659 | /** Return the size in bytes of a reference (pointer) */ |
| 660 | static inline size_t SlCalcRefLen() |
| 661 | { |
| 662 | return IsSavegameVersionBefore(SLV_69) ? 2 : 4; |
| 663 | } |
| 664 | |
| 665 | void SlSetArrayIndex(uint index) |
| 666 | { |
no test coverage detected