diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
| commit | 1afa395c2fe08ed937dbb0624ade48e46be87efe (patch) | |
| tree | 621bd3dcf4c1250790f6cf414645d36611684b79 /apps/tree.c | |
| parent | fe706d2754220794d6a22370424391e146b75c95 (diff) | |
| download | rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.zip rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.gz rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.bz2 rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.xz | |
The splash() function's second argument (keymask) is now removed, as it
was not used by any code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4201 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
| -rw-r--r-- | apps/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c index a016aff..3c9827d 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -861,7 +861,7 @@ static bool dirbrowse(char *root, int *dirfilter) if (*dirfilter > NUM_FILTER_MODES && numentries==0) { - splash(HZ*2, 0, true, str(LANG_NO_FILES)); + splash(HZ*2, true, str(LANG_NO_FILES)); return false; /* No files found for rockbox_browser() */ } @@ -1060,7 +1060,7 @@ static bool dirbrowse(char *root, int *dirfilter) if(!lang_load(buf)) { set_file(buf, global_settings.lang_file, MAX_FILENAME); - splash(HZ, 0, true, str(LANG_LANGUAGE_LOADED)); + splash(HZ, true, str(LANG_LANGUAGE_LOADED)); restore = true; } break; |