From a2760cfdd47341af322eb3b1837f956ead51fcf1 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sat, 19 Jan 2002 03:30:28 +0000 Subject: [PATCH] Disabled nls file loading svn path=/trunk/; revision=2529 --- freeldr/freeldr/reactos/reactos.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/freeldr/freeldr/reactos/reactos.c b/freeldr/freeldr/reactos/reactos.c index 5930a764905..baf4942bd89 100644 --- a/freeldr/freeldr/reactos/reactos.c +++ b/freeldr/freeldr/reactos/reactos.c @@ -604,7 +604,7 @@ void LoadAndBootReactOS(PUCHAR OperatingSystemName) #endif /* - * retrieve hardware information and create the hardware hive + * Retrieve hardware information and create the hardware hive */ DetectHardware(); // Base = MultiBootCreateModule(HARDWARE.HIV); @@ -614,18 +614,20 @@ void LoadAndBootReactOS(PUCHAR OperatingSystemName) DrawProgressBar(20); /* - * load NLS files + * Load NLS files */ +#if 0 if (!LoadNlsFiles(szBootPath)) { MessageBox("Failed to load NLS files\n"); return; } +#endif DrawProgressBar(25); /* - * load boot drivers + * Load boot drivers */ LoadBootDrivers(szBootPath, 25);