a pair of afx audio-class membervar cleanups

This commit is contained in:
Azaezel 2018-03-30 02:51:17 -05:00
parent 74047fb34f
commit 47fc9325d1
2 changed files with 4 additions and 4 deletions

View file

@ -150,7 +150,7 @@ void afxEA_AudioBank::do_runtime_substitutions()
class afxEA_SoundBankDesc : public afxEffectAdapterDesc, public afxEffectDefs
{
static afxEA_SoundBankDesc desc;
static afxEA_SoundBankDesc mDesc;
public:
virtual bool testEffectType(const SimDataBlock*) const;
@ -162,7 +162,7 @@ public:
virtual afxEffectWrapper* create() const { return new afxEA_AudioBank; }
};
afxEA_SoundBankDesc afxEA_SoundBankDesc::desc;
afxEA_SoundBankDesc afxEA_SoundBankDesc::mDesc;
bool afxEA_SoundBankDesc::testEffectType(const SimDataBlock* db) const
{

View file

@ -150,7 +150,7 @@ void afxEA_Sound::onDeleteNotify(SimObject* obj)
class afxEA_SoundDesc : public afxEffectAdapterDesc, public afxEffectDefs
{
static afxEA_SoundDesc desc;
static afxEA_SoundDesc mDesc;
public:
virtual bool testEffectType(const SimDataBlock*) const;
@ -162,7 +162,7 @@ public:
virtual afxEffectWrapper* create() const { return new afxEA_Sound; }
};
afxEA_SoundDesc afxEA_SoundDesc::desc;
afxEA_SoundDesc afxEA_SoundDesc::mDesc;
bool afxEA_SoundDesc::testEffectType(const SimDataBlock* db) const
{