This commit is contained in:
Scott Lahteine
2018-11-20 05:36:19 -06:00
parent 8ea4eeb785
commit 643e0066a0
4 changed files with 17 additions and 17 deletions

View File

@@ -106,7 +106,7 @@
* Defines for 8.3 and long (vfat) filenames
*/
#define FILENAME_LENGTH 12 // Number of UTF-16 characters per entry
#define FILENAME_LENGTH 13 // Number of UTF-16 characters per entry
// Total bytes needed to store a single long filename
#define LONG_FILENAME_LENGTH ((FILENAME_LENGTH) * (MAX_VFAT_ENTRIES))
#define LONG_FILENAME_LENGTH (FILENAME_LENGTH * MAX_VFAT_ENTRIES + 1)