diff --git a/stepmania/src/NotesWriterSM.cpp b/stepmania/src/NotesWriterSM.cpp index d27c49ecfb..acaac139b3 100644 --- a/stepmania/src/NotesWriterSM.cpp +++ b/stepmania/src/NotesWriterSM.cpp @@ -201,6 +201,10 @@ bool NotesWriterSM::Write(CString sPath, const Song &out, bool bSavingCache) if( pNotes->IsAutogen() ) continue; /* don't write autogen notes */ + /* Only save steps that weren't loaded from a profile. */ + if( pNotes->WasLoadedFromProfile() ) + continue; + WriteSMNotesTag( *out.m_apNotes[i], f, bSavingCache ); }