diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-10-21 18:34:48 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-10-21 18:34:48 +0000 |
| commit | 40ae63b4fcf57da3f70e342230ef81cb3b903d4f (patch) | |
| tree | 40133e9083584c0c24ea3cb0a54aedfac22a096a /apps/talk.c | |
| parent | a24bf1caef474d52687558244e93710b39b86a1e (diff) | |
| download | rockbox-40ae63b4fcf57da3f70e342230ef81cb3b903d4f.zip rockbox-40ae63b4fcf57da3f70e342230ef81cb3b903d4f.tar.gz rockbox-40ae63b4fcf57da3f70e342230ef81cb3b903d4f.tar.bz2 rockbox-40ae63b4fcf57da3f70e342230ef81cb3b903d4f.tar.xz | |
Improvement for talking filenames: While loading the directory, already cache for which files are clips available. This avoids unsuccessful spinups while browsing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5317 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/talk.c')
| -rw-r--r-- | apps/talk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/talk.c b/apps/talk.c index 7cfcb46..db52afc 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -39,6 +39,7 @@ #define QUEUE_SIZE 64 /* must be a power of two */ #define QUEUE_MASK (QUEUE_SIZE-1) const char* const dir_thumbnail_name = "_dirname.talk"; +const char* const file_thumbnail_ext = ".talk"; /***************** Functional Macros *****************/ |