1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 23:59:41 +02:00

Bug 1979 - Activate Paul's fix for Windows too.

I tested the basics, and no block files were lost.
This commit is contained in:
James Crook 2018-10-13 22:02:09 +01:00
parent ffa67d2b1e
commit cdf9d63760

View File

@ -73,8 +73,8 @@ bool FileNames::HardLinkFile( const wxString& file1, const wxString& file2 )
{
#ifdef __WXMSW__
// return ::CreateHardLinkA( file1.c_str(), file2.c_str(), NULL );
return false;
return ::CreateHardLinkA( file1.c_str(), file2.c_str(), NULL );
//return false;
#else