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

Function SlReadUint64

src/saveload/saveload.cpp:436–441  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

434}
435
436static inline uint64_t SlReadUint64()
437{
438 uint32_t x = SlReadUint32();
439 uint32_t y = SlReadUint32();
440 return (uint64_t)x << 32 | y;
441}
442
443static inline void SlWriteUint16(uint16_t v)
444{

Callers 1

SlSaveLoadConvFunction · 0.85

Calls 1

SlReadUint32Function · 0.85

Tested by

no test coverage detected