Browse Source

Ensure that song dirtiness is cleared by 'new'.

tags/non-sequencer-v1.9.4
Jonathan Moore Liles 17 years ago
parent
commit
cfd27f88ed
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      main.C

+ 2
- 1
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


Loading…
Cancel
Save