Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
436
static inline uint64_t SlReadUint64()
437
{
438
uint32_t x = SlReadUint32();
439
uint32_t y = SlReadUint32();
440
return (uint64_t)x << 32 | y;
441
}
442
443
static inline void SlWriteUint16(uint16_t v)
444
{
Callers
1
SlSaveLoadConv
Function · 0.85
Calls
1
SlReadUint32
Function · 0.85
Tested by
no test coverage detected