diff options
Diffstat (limited to 'src/Boot/Windows/BootMain.cpp')
-rw-r--r-- | src/Boot/Windows/BootMain.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Boot/Windows/BootMain.cpp b/src/Boot/Windows/BootMain.cpp index 2cfc2945..90692b52 100644 --- a/src/Boot/Windows/BootMain.cpp +++ b/src/Boot/Windows/BootMain.cpp @@ -890,6 +890,8 @@ askBadSectorSkip: if (headerUpdateRequired)
{
+ Print ("\rUpdating header...");
+
AcquireSectorBuffer();
uint64 headerSector;
headerSector.HighPart = 0;
@@ -927,6 +929,8 @@ askBadSectorSkip: while (WriteSectors (SectorBuffer, drive, headerSector, 1) != BiosResultSuccess);
ReleaseSectorBuffer();
+
+ Print ("Done!\r\n");
}
if (sectorsRemaining.HighPart == 0 && sectorsRemaining.LowPart == 0)
|