Changeset 5489 for trunk/src


Ignore:
Timestamp:
Apr 6, 2001, 5:26:09 PM (24 years ago)
Author:
bird
Message:

Corrected -ForcePreload flag in config.sys. It was incorrectly added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/utils/Win32kCC.c

    r5226 r5489  
    1 /* $Id: Win32kCC.c,v 1.14 2001-02-21 07:52:33 bird Exp $
     1/* $Id: Win32kCC.c,v 1.15 2001-04-06 15:26:09 bird Exp $
    22 *
    33 * Win32CC - Win32k Control Center.
     
    595595                    if (pThis->NewOptions.fNoLoader)            strcat(szArgs, " -Noloader");
    596596                    if (!pThis->NewOptions.fDllFixes)           strcat(szArgs, " -DllFixes:D"); /* default is enabled */
    597                     if (!pThis->NewOptions.fForcePreload)       strcat(szArgs, " -ForcePreload:Y"); /* default is disabled */
     597                    if (pThis->NewOptions.fForcePreload)        strcat(szArgs, " -ForcePreload:Y"); /* default is disabled */
    598598                    if (pThis->NewOptions.cbSwpHeapMax != CB_SWP_MAX)
    599599                        sprintf(szArgs + strlen(szArgs), " -HeapMax:%d", pThis->NewOptions.cbSwpHeapMax); /* FIXME - to be changed */
Note: See TracChangeset for help on using the changeset viewer.