From: Kamil Hornicek Date: Thu, 17 Apr 2014 21:32:35 +0000 (+0000) Subject: [USETUP] X-Git-Tag: backups/0.3.17@66124~1718 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=8f32653a219b954609e49f0fae617215d6bfbee2;ds=sidebyside [USETUP] - add a default page file entry to the registry also during unattended setup CORE-8074 svn path=/trunk/; revision=62769 --- diff --git a/reactos/base/setup/usetup/interface/usetup.c b/reactos/base/setup/usetup/interface/usetup.c index d8c73af3ac8..8ba4d858be9 100644 --- a/reactos/base/setup/usetup/interface/usetup.c +++ b/reactos/base/setup/usetup/interface/usetup.c @@ -1524,6 +1524,8 @@ SelectPartitionPage(PINPUT_RECORD Ir) MaxSize, TRUE); + DestinationDriveLetter = (WCHAR)PartitionList->CurrentPartition->DriveLetter[0]; + return SELECT_FILE_SYSTEM_PAGE; } } @@ -1535,6 +1537,8 @@ SelectPartitionPage(PINPUT_RECORD Ir) return SELECT_PARTITION_PAGE; /* let the user select another partition */ } + DestinationDriveLetter = (WCHAR)PartitionList->CurrentPartition->DriveLetter[0]; + return SELECT_FILE_SYSTEM_PAGE; } }