From: jethead71 Date: Sat, 26 Jun 2010 10:17:18 +0000 (+0000) Subject: Fix red. Thought I had REC_SAMPR_DEFAULT covered if not otherwise specified as differ... X-Git-Url: https://repo.or.cz/w/kugel-rb.git/commitdiff_plain/55cea3748adc46fec77b63bddab0364aa9303e59 Fix red. Thought I had REC_SAMPR_DEFAULT covered if not otherwise specified as different than 44. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27140 a1c6a512-1295-4272-9138-f99709370657 --- diff --git a/firmware/export/pcm_sampr.h b/firmware/export/pcm_sampr.h index 54db8a1df..c46e3ea9e 100644 --- a/firmware/export/pcm_sampr.h +++ b/firmware/export/pcm_sampr.h @@ -301,6 +301,10 @@ enum rec_freq_indexes #define REC_FREQ_DEFAULT REC_FREQ_44 #endif +#ifndef REC_SAMPR_DEFAULT +#define REC_SAMPR_DEFAULT SAMPR_44 +#endif + #define REC_FREQ_CFG_VAL_LIST &REC_HAVE_96_(",96") REC_HAVE_88_(",88") \ REC_HAVE_64_(",64") REC_HAVE_48_(",48") \ REC_HAVE_44_(",44") REC_HAVE_32_(",32") \