MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / xSndStreamReady

Function xSndStreamReady

src/SB/Core/x/xSnd.cpp:389–410  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

387 iSndSetExternalCallback(callback);
388}
389
390void reset_faders()
391{
392 faders_active = 0;
393}
394
395class fade_data {
396 // total size: 0x18
397public:
398 unsigned char in; // offset 0x0, size 0x1
399 unsigned int handle; // offset 0x4, size 0x4
400 float start_delay; // offset 0x8, size 0x4
401 float time; // offset 0xC, size 0x4
402 float end_time; // offset 0x10, size 0x4
403 float volume; // offset 0x14, size 0x4
404
405 void operator=(const fade_data& rhs);
406};
407
408void fade_data::operator=(const fade_data& rhs)
409{
410 in = rhs.in;
411 handle = rhs.handle;
412 start_delay = rhs.start_delay;
413 time = rhs.time;

Callers 1

update_prompt_statusFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected