File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
xivModdingFramework/SqPack/FileTypes Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,20 @@ private static long GetMaximumFileSize(string drive)
93
93
return 34359738368 ;
94
94
case "exFAT" :
95
95
return 34359738368 ;
96
+ case "ext2" :
97
+ return 34359738368 ;
98
+ case "ext3" :
99
+ return 34359738368 ;
100
+ case "ext4" :
101
+ return 34359738368 ;
102
+ case "XFS" :
103
+ return 34359738368 ;
104
+ case "btrfs" :
105
+ return 34359738368 ;
106
+ case "ZFS" :
107
+ return 34359738368 ;
108
+ case "ReiserFS" :
109
+ return 34359738368 ;
96
110
default :
97
111
// Unknown HDD Format, default to the basic limit.
98
112
return 2000000000 ;
@@ -2069,4 +2083,4 @@ public static async Task<Dictionary<long, long>> ComputeOpenSlots(XivDataFile df
2069
2083
return slots ;
2070
2084
}
2071
2085
}
2072
- }
2086
+ }
You can’t perform that action at this time.
0 commit comments