diff --git a/play.cpp b/play.cpp index 2ae8d51..03e9dbd 100644 --- a/play.cpp +++ b/play.cpp @@ -23,6 +23,9 @@ uint32_t interpret_note(uint8_t* buffer, const char note, const char param ) { } void play_init(const char* new_song) { + volume=64; + octave=4; + tempo=44100; if (song != NULL) free(song); song = (char*)malloc( strlen( new_song ) + 1 ); strcpy( song, new_song );