Only call WinLDR for x86 since there is no NT for ARM

svn path=/trunk/; revision=41910
This commit is contained in:
ReactOS Portable Systems Group 2009-07-12 10:37:38 +00:00
parent 6dc2e41228
commit 52009e13dd

View file

@ -122,12 +122,14 @@ VOID RunLoader(VOID)
// to have different install methods, etc.
LoadReactOSSetup();
}
#ifdef __i386__
else if (_stricmp(SettingValue, "ReactOSSetup2") == 0)
{
// WinLdr-style boot
LoadReactOSSetup2();
}
#endif
#endif
#ifdef __i386__
else if (_stricmp(SettingValue, "WindowsNT40") == 0)
{