Possible fix for bug 584:

Don't compress note data in the editor.

I need confirmation that this works as intended before
it goes into the changelog and whatnot.
This commit is contained in:
Jason Felds
2011-11-07 14:59:50 -05:00
parent 61000a1776
commit d513d73bd2
+6
View File
@@ -379,6 +379,12 @@ void Steps::Compress() const
m_sNoteDataCompressed = RString();
return;
}
// Don't compress data in the editor: it's still in use.
if (GAMESTATE->m_bInStepEditor)
{
return;
}
if( !m_sFilename.empty() && m_LoadedFromProfile == ProfileSlot_Invalid )
{