MCPcopy Create free account
hub / github.com/ZDoom/Raze / WriteWord

Function WriteWord

source/core/d_protocol.cpp:110–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110void WriteWord (short v, uint8_t **stream)
111{
112 (*stream)[0] = v >> 8;
113 (*stream)[1] = v & 255;
114 *stream += 2;
115}
116
117void WriteLong (int v, uint8_t **stream)
118{

Callers 2

TicSpecialClass · 0.85
NetUpdateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected