Fixed potential build warning related to MAX_MIX_COUNT redef

This commit is contained in:
Ross Owen
2015-05-21 16:13:08 +01:00
parent a141826700
commit 8b0fbb631b

View File

@@ -946,10 +946,12 @@
*/ */
#ifdef MIXER #ifdef MIXER
#ifndef MAX_MIX_COUNT #ifndef MAX_MIX_COUNT
#define MAX_MIX_COUNT (8) #define MAX_MIX_COUNT (8)
#endif #endif
#else #else
#define MAX_MIX_COUNT (0) #ifndef MAX_MIX_COUNT
#define MAX_MIX_COUNT (0)
#endif
#endif #endif
/** /**
@@ -960,7 +962,7 @@
* Default: 18 * Default: 18
*/ */
#ifndef MIX_INPUTS #ifndef MIX_INPUTS
#define MIX_INPUTS (18) #define MIX_INPUTS (18)
#endif #endif
/* Volume processing defines */ /* Volume processing defines */