MCPcopy Create free account
hub / github.com/OpenTTD/OpenTTD / SlWriteUint64

Function SlWriteUint64

src/saveload/saveload.cpp:455–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453}
454
455static inline void SlWriteUint64(uint64_t x)
456{
457 SlWriteUint32((uint32_t)(x >> 32));
458 SlWriteUint32((uint32_t)x);
459}
460
461/**
462 * Read in the header descriptor of an object or an array.

Callers 1

SlSaveLoadConvFunction · 0.85

Calls 1

SlWriteUint32Function · 0.85

Tested by

no test coverage detected