mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 19:14:48 +00:00
[usetup]
exit when no usable disks are found svn path=/trunk/; revision=62467
This commit is contained in:
parent
7165a7c35b
commit
d9eab6f7d4
1 changed files with 5 additions and 0 deletions
|
@ -1472,6 +1472,11 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
||||||
/* FIXME: show an error dialog */
|
/* FIXME: show an error dialog */
|
||||||
return QUIT_PAGE;
|
return QUIT_PAGE;
|
||||||
}
|
}
|
||||||
|
else if (IsListEmpty (&PartitionList->DiskListHead))
|
||||||
|
{
|
||||||
|
MUIDisplayError(ERROR_NO_HDD, Ir, POPUP_WAIT_ENTER);
|
||||||
|
return QUIT_PAGE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DrawPartitionList(PartitionList);
|
DrawPartitionList(PartitionList);
|
||||||
|
|
Loading…
Reference in a new issue