mirror of https://github.com/ventoy/Ventoy.git
Don't delete partition when update in GPT partition style.
This commit is contained in:
parent
d063dbb7f2
commit
f9763a44b2
Binary file not shown.
|
@ -1851,6 +1851,8 @@ int UpdateVentoy2PhyDrive(PHY_DRIVE_INFO *pPhyDrive)
|
|||
|
||||
|
||||
if (!TryWritePart2(hDrive, StartSector))
|
||||
{
|
||||
if (pPhyDrive->PartStyle == 0)
|
||||
{
|
||||
ForceMBR = TRUE;
|
||||
Log("Try write failed, now delete partition 2...");
|
||||
|
@ -1868,7 +1870,7 @@ int UpdateVentoy2PhyDrive(PHY_DRIVE_INFO *pPhyDrive)
|
|||
goto End;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
PROGRESS_BAR_SET_POS(PT_FORMAT_PART2);
|
||||
|
||||
|
|
Loading…
Reference in New Issue