mirror of https://github.com/PrimeDecomp/prime.git
Match CScriptSpecialFunction::DeleteEmitter
This commit is contained in:
parent
07147d4057
commit
e48f6478f9
|
@ -14,6 +14,7 @@ public:
|
|||
bool operator==(const CSfxHandle& other) { return mID == other.mID; }
|
||||
bool operator!=(const CSfxHandle& other) { return mID != other.mID; }
|
||||
operator bool() const { return mID != 0; }
|
||||
void Clear() { mID = 0; }
|
||||
|
||||
private:
|
||||
uint mID;
|
||||
|
|
|
@ -141,7 +141,7 @@ public:
|
|||
|
||||
bool ShouldSkipCinematic(CStateManager& stateMgr) const;
|
||||
|
||||
void DeleteEmitter(const CSfxHandle& handle);
|
||||
void DeleteEmitter(CSfxHandle& handle);
|
||||
u32 GetSpecialEnding(const CStateManager&) const;
|
||||
void AddOrUpdateEmitter(float pitch, CSfxHandle& handle, u16 id, const CVector3f& pos, uchar vol);
|
||||
};
|
||||
|
|
|
@ -1078,12 +1078,11 @@ void CScriptSpecialFunction::ThinkPlayerInArea(float dt, CStateManager& mgr) {
|
|||
}
|
||||
}
|
||||
|
||||
void CScriptSpecialFunction::DeleteEmitter(const CSfxHandle& handle) {
|
||||
if (!handle) {
|
||||
return;
|
||||
void CScriptSpecialFunction::DeleteEmitter(CSfxHandle& handle) {
|
||||
if (handle) {
|
||||
CSfxManager::RemoveEmitter(handle);
|
||||
handle.Clear();
|
||||
}
|
||||
|
||||
CSfxManager::RemoveEmitter(handle);
|
||||
}
|
||||
|
||||
u32 CScriptSpecialFunction::GetSpecialEnding(const CStateManager& mgr) const {
|
||||
|
|
Loading…
Reference in New Issue