talk: Keep QUEUE_SIZE at 64 for smallmem devices

Change-Id: I03fb48b4dadbe0079f699d1fa9d994efd7fe4f68
This commit is contained in:
Solomon Peachy 2025-06-02 12:44:44 -04:00
parent 36a5501d74
commit 123d3b9a23

View file

@ -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";