mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-27 07:10:24 +00:00
35 lines
448 B
C++
35 lines
448 B
C++
#include "ps2lowsfx.h"
|
|
|
|
|
|
// @TODO
|
|
void SFX_PlayPos(unsigned int, CVector*, int)
|
|
{}
|
|
|
|
static unsigned char gSfxStatus;
|
|
// @NotOk
|
|
// Global
|
|
void SFX_LevelStart(void)
|
|
{
|
|
gSfxStatus = 0;
|
|
}
|
|
|
|
static unsigned char gReverbType;
|
|
void __inline SFX_SetReverbType(unsigned char reverb)
|
|
{
|
|
gReverbType = reverb != 0;
|
|
}
|
|
|
|
// @Ok
|
|
void SFX_ReverbOff(void)
|
|
{
|
|
SFX_SetReverbType(0);
|
|
}
|
|
|
|
// @TODO
|
|
void SFX_Stop(unsigned int)
|
|
{}
|
|
|
|
// @TODO
|
|
void SFX_Play(u32, i16, i32)
|
|
{}
|