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:
@@ -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 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user