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

Function SlWriteUint16

src/saveload/saveload.cpp:443–447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

441}
442
443static inline void SlWriteUint16(uint16_t v)
444{
445 SlWriteByte(GB(v, 8, 8));
446 SlWriteByte(GB(v, 0, 8));
447}
448
449static inline void SlWriteUint32(uint32_t v)
450{

Callers 2

SlWriteUint32Function · 0.85
SlSaveLoadConvFunction · 0.85

Calls 2

SlWriteByteFunction · 0.85
GBFunction · 0.85

Tested by

no test coverage detected