diff --git a/epicardium/modules/modules.h b/epicardium/modules/modules.h
index e273146fdd0d97bae3cfbfad3de3b5a510fa4a53..182fdae7e1bee27bce1b3d56d94f35bce9eb979e 100644
--- a/epicardium/modules/modules.h
+++ b/epicardium/modules/modules.h
@@ -3,11 +3,11 @@
 
 /* ---------- FAT fs ------------------------------------------------------ */
 /* Number of bits to use for indexing into our internal pool of files/directories
- * This indirectly specifies the size of the pool as 1^EPIC_FAT_FD_INDEX_BITS
+ * This indirectly specifies the size of the pool as 2^EPIC_FAT_FD_INDEX_BITS
  * Increase if number of open file descriptors is not enough, but be aware of
  * memory usage of the pool!
  */
-#define EPIC_FAT_FD_INDEX_BITS 8
+#define EPIC_FAT_FD_INDEX_BITS 4
 #define EPIC_FAT_STATIC_SEMAPHORE 1
 void fatfs_init(void);