Find the file PartInfo.cpp, and then within that file find lines 915-924. Here's what is there currently:
QUOTE
void SelectClusterSize()
{
g_iClusterSize = 16;
ULONG compare = 0x20000000;
while (PartTbl.TableEntries[g_iCurrentPart].LBASize > compare)
{
compare = compare * 2;
g_iClusterSize = g_iClusterSize * 2;
}
}
{
g_iClusterSize = 16;
ULONG compare = 0x20000000;
while (PartTbl.TableEntries[g_iCurrentPart].LBASize > compare)
{
compare = compare * 2;
g_iClusterSize = g_iClusterSize * 2;
}
}
Replace those lines with this code:
QUOTE
void SelectClusterSize()
{
g_iClusterSize = 128;
}
{
g_iClusterSize = 128;
}
Then just compile it and let me know! (If you need the source code for xbpartitioner 1.1 PM me.) Thanks so much guys! This new version will be a big help for other people who want to use a hard drive larger than 1TB and have just one big F drive.