mirror of
https://gitlab.com/kholdfuzion/goldeneye_src
synced 2026-09-10 11:35:13 -04:00
21 lines
375 B
C
21 lines
375 B
C
#include "ultra64.h"
|
|
#include "game/bond.h"
|
|
|
|
void cleanupSFXRelated(void) {
|
|
if (SFX_80036458 != 0)
|
|
{
|
|
if (sfxGetArg0Unk3F(SFX_80036458) != 0)
|
|
{
|
|
sfxDeactivate(SFX_80036458);
|
|
}
|
|
}
|
|
|
|
if (SFX_8003645C != 0)
|
|
{
|
|
if (sfxGetArg0Unk3F(SFX_8003645C) != 0)
|
|
{
|
|
sfxDeactivate(SFX_8003645C);
|
|
}
|
|
}
|
|
|
|
} |