mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
talk: Keep QUEUE_SIZE at 64 for smallmem devices
Change-Id: I03fb48b4dadbe0079f699d1fa9d994efd7fe4f68
This commit is contained in:
parent
36a5501d74
commit
123d3b9a23
1 changed files with 5 additions and 0 deletions
|
@ -48,7 +48,12 @@
|
|||
|
||||
/***************** Constants *****************/
|
||||
|
||||
#if MEMORYSIZE <= 2
|
||||
#define QUEUE_SIZE 64
|
||||
#else
|
||||
#define QUEUE_SIZE 128 /* must be a power of two */
|
||||
#endif
|
||||
|
||||
#define QUEUE_MASK (QUEUE_SIZE-1)
|
||||
const char* const dir_thumbnail_name = "_dirname.talk";
|
||||
const char* const file_thumbnail_ext = ".talk";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue