mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
warning and simulator build fix
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4466 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c8592bac33
commit
c778aa6ac8
2 changed files with 8 additions and 1 deletions
|
|
@ -1511,7 +1511,7 @@ static bool dirbrowse(char *root, int *dirfilter)
|
||||||
else if (global_settings.talk_file == 1) /* files as numbers */
|
else if (global_settings.talk_file == 1) /* files as numbers */
|
||||||
{
|
{
|
||||||
/* try to find a voice ID for the extension, if known */
|
/* try to find a voice ID for the extension, if known */
|
||||||
int j;
|
unsigned int j;
|
||||||
int ext_id = -1; /* default to none */
|
int ext_id = -1; /* default to none */
|
||||||
for (j=0; j<sizeof(filetypes)/sizeof(*filetypes); j++)
|
for (j=0; j<sizeof(filetypes)/sizeof(*filetypes); j++)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -260,4 +260,11 @@ int talk_number(int n, bool enqueue)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int talk_spell(char* spell, bool enqueue)
|
||||||
|
{
|
||||||
|
(void)spell;
|
||||||
|
(void)enqueue;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
const char* dir_thumbnail_name = ".dirname.mp3";
|
const char* dir_thumbnail_name = ".dirname.mp3";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue