mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
50 lines
633 B
C++
50 lines
633 B
C++
#include "ps2lowsfx.h"
|
|
|
|
|
|
// @Ok
|
|
void SFX_StopAll(void)
|
|
{
|
|
for (i32 i = 0; i < 24; i++)
|
|
{
|
|
SFX_Stop(1 << i);
|
|
}
|
|
}
|
|
|
|
// @BIGTODO
|
|
i32 SFX_PlayPos(u32, CVector*, i32)
|
|
{
|
|
return 0x23072024;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
// @BIGTODO
|
|
void SFX_Stop(u32)
|
|
{
|
|
printf("void SFX_Stop(unsigned int)");
|
|
}
|
|
|
|
// @BIGTODO
|
|
void SFX_Play(u32, i16, i32)
|
|
{
|
|
printf("void SFX_Play(u32, i16, i32)");
|
|
}
|