Added a half checkpoint to prevent testbot to wrongly assume ReactOS has crashed during setup

svn path=/trunk/; revision=54368
This commit is contained in:
Pierre Schweitzer 2011-11-12 20:20:41 +00:00
parent 90875550df
commit 62089cfa4b

View file

@ -317,6 +317,14 @@ ProgressSetStep (PPROGRESSBAR Bar,
{ {
Bar->Percent = NewPercent; Bar->Percent = NewPercent;
/* DO NOT REMOVE THOSE LINES
* This might be needed by sysreg
*/
if (NewPercent == 50)
{
DPRINT1("CHECKPOINT:HALF_COPIED\n");
}
sprintf(TextBuffer, "%-3lu%%", Bar->Percent); sprintf(TextBuffer, "%-3lu%%", Bar->Percent);
coPos.X = Bar->Left + (Bar->Width - 2) / 2; coPos.X = Bar->Left + (Bar->Width - 2) / 2;