MCPcopy Create free account
hub / github.com/OpenXcom/OpenXcom / gmext_write_int16

Function gmext_write_int16

src/Engine/GMCat.cpp:97–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95}
96
97static inline void gmext_write_int16 (std::vector<unsigned char> &midi,
98 unsigned int n)
99{
100 midi.push_back(n >> 8);
101 midi.push_back(n);
102}
103
104static inline void gmext_write_delta (std::vector<unsigned char> &midi,
105 unsigned int delta)

Callers 1

gmext_write_midiFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected