From 708b310df9c244acd2fde96061903b750141e7fa Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Tue, 8 Apr 2014 15:44:31 +0100 Subject: [PATCH] NATIVE_DSD_FORMAT_NUM now guarded by ifndef --- module_usb_audio/devicedefines.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/module_usb_audio/devicedefines.h b/module_usb_audio/devicedefines.h index f94187b6..563d8de6 100644 --- a/module_usb_audio/devicedefines.h +++ b/module_usb_audio/devicedefines.h @@ -324,8 +324,10 @@ #endif #ifdef NATIVE_DSD - /* DSD always the last format */ - #define NATIVE_DSD_FORMAT_NUM (OUTPUT_FORMAT_COUNT) + /* DSD always the last format by default */ + #ifndef NATIVE_DSD_FORMAT_NUM + #define NATIVE_DSD_FORMAT_NUM (OUTPUT_FORMAT_COUNT) + #endif #endif