[core] fix large FAT32 formatting for > 1TB disks

* Closes #159
This commit is contained in:
Pete Batard 2013-09-22 03:28:56 +01:00
parent 55ef384277
commit 2945389edc
4 changed files with 23 additions and 24 deletions

View file

@ -51,7 +51,7 @@
#define PROPOSEDLABEL_TOLERANCE 0.10
#define FS_DEFAULT FS_FAT32
#define LARGE_FAT32_SIZE (32*1073741824LL) // Size at which we need to use fat32format
#define MAX_FAT32_SIZE 1.0f // Threshold above which we disable FAT32 formatting (in TB)
#define MAX_FAT32_SIZE 2.0f // Threshold above which we disable FAT32 formatting (in TB)
#define WHITE RGB(255,255,255)
#define SEPARATOR_GREY RGB(223,223,223)
#define RUFUS_URL "http://rufus.akeo.ie"