Răsfoiți Sursa

a pair of afx audio-class membervar cleanups

Azaezel 7 ani în urmă
părinte
comite
58f15d5235

+ 2 - 2
Engine/source/afx/ea/afxEA_AudioBank.cpp

@@ -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
 {
 {

+ 2 - 2
Engine/source/afx/ea/afxEA_Sound.cpp

@@ -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
 {
 {