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

Function SlWriteUint32

src/saveload/saveload.cpp:449–453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

447}
448
449static inline void SlWriteUint32(uint32_t v)
450{
451 SlWriteUint16(GB(v, 16, 16));
452 SlWriteUint16(GB(v, 0, 16));
453}
454
455static inline void SlWriteUint64(uint64_t x)
456{

Callers 6

SlWriteUint64Function · 0.85
SlSetLengthFunction · 0.85
SlSaveLoadConvFunction · 0.85
SlSaveLoadRefFunction · 0.85
SlSaveChunkFunction · 0.85
SlSaveChunksFunction · 0.85

Calls 2

SlWriteUint16Function · 0.85
GBFunction · 0.85

Tested by

no test coverage detected