https://git.reactos.org/?p=reactos.git;a=commitdiff;h=5cb9f8765b53479c09be25dce6e9995fadd676d8
commit 5cb9f8765b53479c09be25dce6e9995fadd676d8 Author: Stanislav Motylkov <[email protected]> AuthorDate: Thu Nov 26 11:46:05 2020 +0300 Commit: Stanislav Motylkov <[email protected]> CommitDate: Thu Nov 26 13:06:20 2020 +0300 [SMSS] Revert commit 131bc73 This is now fixed properly by de16ef3. --- base/system/smss/pagefile.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/base/system/smss/pagefile.c b/base/system/smss/pagefile.c index 0aaed6d01ed..0e3b6746746 100644 --- a/base/system/smss/pagefile.c +++ b/base/system/smss/pagefile.c @@ -851,12 +851,8 @@ SmpCreateVolumeDescriptors(VOID) wcscpy(Buffer, L"\\??\\A:\\"); RtlInitUnicodeString(&VolumePath, Buffer); -#if defined(_M_IX86) /* Start with the C drive, except on NEC PC-98 */ StartChar = IsNEC_98 ? L'A' : L'C'; -#else - StartChar = L'C'; -#endif for (Drive = StartChar, DriveDiff = StartChar - L'A'; Drive <= L'Z'; Drive++, DriveDiff++) { /* Skip the disk if it's not in the drive map */
