diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 264e923415..0f6d96fa74 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -591,6 +591,14 @@ bool Profile::SaveAllToDir( CString sDir, bool bSignData ) const SaveStatsWebPageToDir( sDir ); + // create edits dir + CString sEditsTempFile = sDir + EDITS_SUBDIR + "temp"; + RageFile f; + f.Open( sDir + EDITS_SUBDIR + "temp", RageFile::WRITE ); + f.Close(); + + FILEMAN->Remove( sEditsTempFile ); + return true; }