summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-12-02 08:44:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-12-02 08:44:09 +0000
commit727eab12b37f1ed622a15532b5824c82aad2614e (patch)
tree9dd981afae9eb56b26583c721ec64296a7f5fe44 /apps
parent76667e2a5ba9fb919ad6f9f3db95343b6c3dcc8c (diff)
downloadrockbox-727eab12b37f1ed622a15532b5824c82aad2614e.tar.gz
rockbox-727eab12b37f1ed622a15532b5824c82aad2614e.zip
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
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/peakmeter.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/recorder/peakmeter.c b/apps/recorder/peakmeter.c
index a77fea770e..fbd206bdf8 100644
--- a/apps/recorder/peakmeter.c
+++ b/apps/recorder/peakmeter.c
@@ -39,9 +39,13 @@
39#ifdef HAVE_RECORDING 39#ifdef HAVE_RECORDING
40#include "pcm_record.h" 40#include "pcm_record.h"
41#endif 41#endif
42
43#ifndef SIMULATOR /* this is not used in the sim */
42static bool pm_playback = true; /* selects between playback and recording peaks */ 44static bool pm_playback = true; /* selects between playback and recording peaks */
43#endif 45#endif
44 46
47#endif
48
45#if !defined(SIMULATOR) && CONFIG_CODEC != SWCODEC 49#if !defined(SIMULATOR) && CONFIG_CODEC != SWCODEC
46/* Data source */ 50/* Data source */
47static int pm_src_left = MAS_REG_DQPEAK_L; 51static int pm_src_left = MAS_REG_DQPEAK_L;