MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / SEND_STRM_PLAY

Method SEND_STRM_PLAY

music/streamer.cpp:288–297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

286}
287
288void oms_stream::SEND_STRM_PLAY(float vol, uint8_t count) {
289 oms_q_evt evt;
290
291 evt.cmd = OMS_STRM_PLAY;
292 evt.parm.f = vol;
293 m_q.send(evt);
294 evt.cmd = OMS_STRM_PARM;
295 evt.parm.i = (int)count;
296 m_q.send(evt);
297}
298
299void oms_stream::SEND_STRM_FREE() {
300 oms_q_evt evt;

Callers

nothing calls this directly

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected