1
0
Fork 0
forked from len0rd/rockbox

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:
Jörg Hohensohn 2004-04-04 20:34:28 +00:00
parent c8592bac33
commit c778aa6ac8
2 changed files with 8 additions and 1 deletions

View file

@ -1511,7 +1511,7 @@ static bool dirbrowse(char *root, int *dirfilter)
else if (global_settings.talk_file == 1) /* files as numbers */
{
/* try to find a voice ID for the extension, if known */
int j;
unsigned int j;
int ext_id = -1; /* default to none */
for (j=0; j<sizeof(filetypes)/sizeof(*filetypes); j++)
{

View file

@ -260,4 +260,11 @@ int talk_number(int n, bool enqueue)
return 0;
}
int talk_spell(char* spell, bool enqueue)
{
(void)spell;
(void)enqueue;
return 0;
}
const char* dir_thumbnail_name = ".dirname.mp3";