Fixed up IAP_INTERFACE_STRING_INDEX when MIXER not enabled but MAX_MIX_COUNT !=0

This commit is contained in:
Ross Owen
2014-02-13 18:26:35 +00:00
parent 2894eaf106
commit 255c336f97
2 changed files with 10 additions and 2 deletions

View File

@@ -488,8 +488,12 @@
#define MIX_INPUTS 18
#endif
#ifndef MAX_MIX_COUNT
#define MAX_MIX_COUNT 8
#ifdef MIXER
#ifndef MAX_MIX_COUNT
#define MAX_MIX_COUNT 8
#endif
#else
#define MAX_MIX_COUNT 0
#endif