Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
DanTGL committed Aug 18, 2024
1 parent 353a9de commit 287c77f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/JSystem/JAudio/JASPlayer_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ const JASystem::TOscillator::Osc_ JASystem::Player::sAdsrDef = {
};

const JASystem::TOscillator::Osc_ JASystem::Player::sEnvelopeDef = {
0, 1.0f, NULL, &sRelTable, 1.0f, 0.0f
0, 1.0f, NULL, sRelTable, 1.0f, 0.0f
};

const JASystem::TOscillator::Osc_ JASystem::Player::sVibratoDef = {
1, 0.5f, &sVibTable, &sVibTable, 0.0f, 1.0f
1, 0.5f, sVibTable, sVibTable, 0.0f, 1.0f
};

const JASystem::TOscillator::Osc_ JASystem::Player::sTremoroDef = {
0, 0.5f, &sTreTable, &sTreTable, 0.0f, 1.0f
0, 0.5f, sTreTable, sTreTable, 0.0f, 1.0f
};

s16 JASystem::Player::CUTOFF_TO_IIR_TABLE[] = {
Expand Down

0 comments on commit 287c77f

Please sign in to comment.