From 8e56e138cc7d0e1299a12b64be5a4d70a57b112b Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sat, 5 Dec 2015 18:12:07 +0100 Subject: Windows Rescue Disk: when decryption paused/finished, display message to indicate that header is being updated --- src/Boot/Windows/BootMain.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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) -- cgit v1.2.3