Reenable metronome on Archos targets which got lost during the big change to it in last summer and fix a warning (wrong data type). The plugin button action system causes problems with the Ondio controls (tapping and playing conflict, even though there are exceptions defined) and it's only halfway usable, probably this applies to the Player as well but couldn't test. It is still better than nothing and e.g. metronome is not completely controllable on c200 too where it is also enabled.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16079 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0ce6c52db4
commit
071c2ac339
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ jpeg.c
|
|||
|
||||
#ifndef OLYMPUS_MROBE_500
|
||||
|
||||
#if CONFIG_CODEC == SWCODEC
|
||||
#if (CONFIG_CODEC == SWCODEC) || !defined(SIMULATOR)
|
||||
metronome.c
|
||||
#endif
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@ int bpm_step_counter = 0;
|
|||
|
||||
void callback(unsigned char** start, size_t* size){
|
||||
(void)start; /* unused parameter, avoid warning */
|
||||
*size = NULL; /* end of data */
|
||||
*size = 0; /* end of data */
|
||||
sound_active = false;
|
||||
rb->led(0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue