Changeset 689 for trunk/dll/init.c


Ignore:
Timestamp:
Jun 15, 2007, 8:33:24 AM (18 years ago)
Author:
Steven Levine
Message:

Commit OpenWatcom compatibility updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r633 r689  
    122122              pp = p;
    123123              while (*pp && *pp != '\"')
    124                 *pp++;
     124                *pp += 1;
    125125              if (*pp)
    126126                *pp = 0;
     
    255255    /* end of strings */
    256256    memset(&RGBBLACK, 0, sizeof(RGB2));
    257     RGBGREY.bRed = RGBGREY.bGreen = RGBGREY.bBlue = 204;
     257    RGBGREY.bRed = RGBGREY.bGreen = RGBGREY.bBlue = (BYTE)204;
    258258    RGBGREY.fcOptions = 0;
    259259    FM3UL = *(ULONG *) FM3Str;
     
    300300    save_tools(NULL);
    301301
     302#  ifdef __IBMC__
    302303  _fcloseall();
     304# else // __WATCOMC__
     305  fcloseall();
     306# endif
    303307
    304308  save_dir(s);
Note: See TracChangeset for help on using the changeset viewer.