1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:17:34 +00:00

Piano: Move m_front_buffer/m_back_buffer off heap

This commit is contained in:
William McPherson 2019-12-26 01:41:54 +11:00 committed by Andreas Kling
parent b3b522bae2
commit e80061c808
2 changed files with 4 additions and 5 deletions

View file

@ -6,9 +6,6 @@
PianoWidget::PianoWidget()
{
m_front_buffer = new Sample[2048];
m_back_buffer = new Sample[2048];
set_font(Font::default_fixed_width_font());
}