Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OpenTTD/OpenTTD
/ SlWriteUint64
Function
SlWriteUint64
src/saveload/saveload.cpp:455–459 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
453
}
454
455
static inline void SlWriteUint64(uint64_t x)
456
{
457
SlWriteUint32((uint32_t)(x >> 32));
458
SlWriteUint32((uint32_t)x);
459
}
460
461
/**
462
* Read in the header descriptor of an object or an array.
Callers
1
SlSaveLoadConv
Function · 0.85
Calls
1
SlWriteUint32
Function · 0.85
Tested by
no test coverage detected