Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
443
static inline void SlWriteUint16(uint16_t v)
444
{
445
SlWriteByte(GB(v, 8, 8));
446
SlWriteByte(GB(v, 0, 8));
447
}
448
449
static inline void SlWriteUint32(uint32_t v)
450
{
Callers
2
SlWriteUint32
Function · 0.85
SlSaveLoadConv
Function · 0.85
Calls
2
SlWriteByte
Function · 0.85
GB
Function · 0.85
Tested by
no test coverage detected