master
Ashley N. 2023-08-14 19:59:58 -04:00
parent d541506c6c
commit 6d050d7983
1 changed files with 1 additions and 1 deletions

View File

@ -595,7 +595,7 @@ impl DmfModule {
9 => Note::A( octave ), 9 => Note::A( octave ),
10 => Note::ASharp( octave ), 10 => Note::ASharp( octave ),
11 => Note::B( octave ), 11 => Note::B( octave ),
12 => Note::C( octave ), 12 => Note::C( octave + 1 ), // deflemask y u shift the octave down 1 for C??
_ => return Err( format!( "invalid file: invalid note id {}", note ) )? _ => return Err( format!( "invalid file: invalid note id {}", note ) )?
} }
) )