diff options
| -rw-r--r-- | sound/mixer.h | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/sound/mixer.h b/sound/mixer.h index 2f9d5713a3..b70c3b8692 100644 --- a/sound/mixer.h +++ b/sound/mixer.h @@ -46,12 +46,6 @@ public:  class SoundMixer {  public: -	typedef void PremixProc (void *param, int16 *data, uint len); - -	enum { -		NUM_CHANNELS = 16 -	}; -  	enum {  		/** unsigned samples (default: signed) */  		FLAG_UNSIGNED = 1 << 0, @@ -76,6 +70,10 @@ public:  	};  private: +	enum { +		NUM_CHANNELS = 16 +	}; +  	OSystem *_syst;  	OSystem::MutexRef _mutex; | 
