fix yellow build by removing a static unused variable from the simulator build

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8125 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-12-02 08:44:09 +00:00
parent 76667e2a5b
commit 727eab12b3

View file

@ -39,9 +39,13 @@
#ifdef HAVE_RECORDING
#include "pcm_record.h"
#endif
#ifndef SIMULATOR /* this is not used in the sim */
static bool pm_playback = true; /* selects between playback and recording peaks */
#endif
#endif
#if !defined(SIMULATOR) && CONFIG_CODEC != SWCODEC
/* Data source */
static int pm_src_left = MAS_REG_DQPEAK_L;