1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Bug 2101 (Wording) - Mac recovery file can be corrupted before recovery when switching between 32 and 64 bit builds

This commit is contained in:
James Crook 2019-05-01 15:27:15 +01:00
parent ad26c35d3c
commit cf069c5917

View File

@ -484,14 +484,11 @@ enum FieldTypes
FT_Name // type, ID, name length, name
};
wxString AutoSaveFile::FailureMessage( const FilePath &filePath )
wxString AutoSaveFile::FailureMessage( const FilePath &/*filePath*/ )
{
return wxString::Format(
_("Could not decode crash recovery file: %s\n\n\
This file was saved by a version of Audacity built for a different processor architecture. \
Try running that version of Audacity to recover its contents."),
filePath
);
return
_("This recovery file was saved by Audacity 2.3.0 or before.\n"
"You need to run that version of Audacity to recover the project." );
}
AutoSaveFile::AutoSaveFile(size_t allocSize)