Fix red in bootloaders

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21782 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Alexander Levin 2009-07-11 17:16:23 +00:00
parent cc7c665d9b
commit 7765158513
4 changed files with 8 additions and 7 deletions

View file

@ -64,4 +64,11 @@ void sound_set_pitch(int32_t pitch);
int32_t sound_get_pitch(void);
#endif
#ifdef HAVE_PITCHSCREEN
/* precision of the pitch and speed variables */
/* One zero per decimal (100 means two decimal places */
#define PITCH_SPEED_PRECISION 100L
#define PITCH_SPEED_100 (100L * PITCH_SPEED_PRECISION) /* 100% speed */
#endif /* HAVE_PITCHSCREEN */
#endif

View file

@ -25,8 +25,6 @@
#include "sound.h"
#include "logf.h"
#include "system.h"
/* for the pitch and speed precision #defines: */
#include "pitchscreen.h"
#ifndef SIMULATOR
#include "i2c.h"
#include "mas.h"