mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 23:24:41 +00:00
a pair of afx audio-class membervar cleanups
This commit is contained in:
parent
74047fb34f
commit
47fc9325d1
2 changed files with 4 additions and 4 deletions
|
|
@ -150,7 +150,7 @@ void afxEA_AudioBank::do_runtime_substitutions()
|
||||||
|
|
||||||
class afxEA_SoundBankDesc : public afxEffectAdapterDesc, public afxEffectDefs
|
class afxEA_SoundBankDesc : public afxEffectAdapterDesc, public afxEffectDefs
|
||||||
{
|
{
|
||||||
static afxEA_SoundBankDesc desc;
|
static afxEA_SoundBankDesc mDesc;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual bool testEffectType(const SimDataBlock*) const;
|
virtual bool testEffectType(const SimDataBlock*) const;
|
||||||
|
|
@ -162,7 +162,7 @@ public:
|
||||||
virtual afxEffectWrapper* create() const { return new afxEA_AudioBank; }
|
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
|
bool afxEA_SoundBankDesc::testEffectType(const SimDataBlock* db) const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -150,7 +150,7 @@ void afxEA_Sound::onDeleteNotify(SimObject* obj)
|
||||||
|
|
||||||
class afxEA_SoundDesc : public afxEffectAdapterDesc, public afxEffectDefs
|
class afxEA_SoundDesc : public afxEffectAdapterDesc, public afxEffectDefs
|
||||||
{
|
{
|
||||||
static afxEA_SoundDesc desc;
|
static afxEA_SoundDesc mDesc;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual bool testEffectType(const SimDataBlock*) const;
|
virtual bool testEffectType(const SimDataBlock*) const;
|
||||||
|
|
@ -162,7 +162,7 @@ public:
|
||||||
virtual afxEffectWrapper* create() const { return new afxEA_Sound; }
|
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
|
bool afxEA_SoundDesc::testEffectType(const SimDataBlock* db) const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue