Changeset 1525 for trunk/dll/saveclip.c


Ignore:
Timestamp:
May 29, 2010, 7:18:28 PM (15 years ago)
Author:
Gregg Young
Message:

Fix save list files so it appends to a file when the append checkbox is selected (ticket 436)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/saveclip.c

    r1489 r1525  
    3131  08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used)
    3232  12 Jul 09 GKY Add xDosQueryAppType and xDosAlloc... to allow FM/2 to load in high memory
     33  29 May 10 GKY Fix SaveListDlgProc to append to a file when Append checkbox is selected
    3334
    3435***********************************************************************/
     
    477478          Runtime_Error(pszSrcFile, __LINE__, NULL);
    478479        else {
    479           fp = _fsopen(savename, "w+", SH_DENYWR);
     480          fp = _fsopen(savename, "r+", SH_DENYWR);
    480481          if (!fp)
    481482            Runtime_Error(pszSrcFile, __LINE__, "_fsopen");
Note: See TracChangeset for help on using the changeset viewer.