Skip to content

Commit

Permalink
fixed chiptune bug, pichenettes#61
Browse files Browse the repository at this point in the history
  • Loading branch information
ctag-fh-kiel committed Nov 25, 2023
1 parent db80d0e commit 941b85b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plaits/dsp/engine2/chiptune_engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ using namespace stmlib;

void ChiptuneEngine::Init(BufferAllocator* allocator) {
bass_.Init();
for (int i = 0; i < kChordNumNotes; ++i) {
for (int i = 0; i < kChordNumVoices; ++i) {
voice_[i].Init();
}

Expand Down

0 comments on commit 941b85b

Please sign in to comment.