1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

Piano: Set some nice defaults

This commit is contained in:
William McPherson 2020-02-05 18:20:10 +11:00 committed by Andreas Kling
parent 59bde64ba6
commit 1e0d57a13f

View file

@ -31,10 +31,10 @@
AudioEngine::AudioEngine()
{
set_sustain_impl(0);
set_attack(0);
set_decay(0);
set_release(0);
set_sustain_impl(1000);
set_attack(5);
set_decay(1000);
set_release(5);
}
AudioEngine::~AudioEngine()