Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ZDoom/gzdoom
/ ReadInt16
Function
ReadInt16
src/d_protocol.cpp:65–70 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
63
}
64
65
int16_t ReadInt16 (uint8_t **stream)
66
{
67
int16_t v = (((*stream)[0]) << 8) | (((*stream)[1]));
68
*stream += 2;
69
return v;
70
}
71
72
int32_t ReadInt32 (uint8_t **stream)
73
{
Callers
7
UnpackUserCmd
Function · 0.85
ReadTicCmd
Function · 0.85
G_ProcessIFFDemo
Function · 0.85
Net_DoCommand
Function · 0.85
P_ConversationCommand
Function · 0.85
P_ReadDemoWeaponsChunk
Function · 0.85
ReadUInt16
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected