Added clamp in RageColor->RageVColor conversion to fix some artifacts

Fixed "autogen doesn't generate patterns for all difficulties for some songs"
Fixed incorrect "show" value in "show!hold" being written in DWIs
Fixed "song ends early after adding an edit then playing"
This commit is contained in:
Chris Danford
2002-11-13 05:17:15 +00:00
parent 4788da7a4e
commit 9d68ff5d7b
13 changed files with 133 additions and 88 deletions
+8 -1
View File
@@ -282,6 +282,13 @@ void SongSelector::OnNotesChange()
if( GetSelectedNotes() == NULL )
m_textNotes.SetText( "(NEW)" );
else
m_textNotes.SetText( GetSelectedNotes()->m_sDescription!="" ? GetSelectedNotes()->m_sDescription : "[no name]" );
{
CString sDescription = GetSelectedNotes()->m_sDescription;
if( sDescription == "" )
sDescription = "[no name]";
if( GetSelectedNotes()->m_bAutoGen )
sDescription += " (autogen)";
m_textNotes.SetText( sDescription );
}
}