Ensure that song dirtiness is cleared by 'new'.

pull/3/head
Jonathan Moore Liles 2008-03-23 01:26:12 -05:00
parent c307a3443c
commit cfd27f88ed
1 changed files with 2 additions and 1 deletions

3
main.C
View File

@ -72,7 +72,6 @@ void
init_song ( void )
{
song.filename = NULL;
song.dirty( false );
pattern_c->grid( NULL );
phrase_c->grid( NULL );
@ -81,6 +80,8 @@ init_song ( void )
playlist->insert( 0, 1 );
pattern_c->grid( new pattern );
phrase_c->grid( new phrase );
song.dirty( false );
}
void