Skip to content

Commit

Permalink
Use MAXIMUM_BUFFER_SIZE
Browse files Browse the repository at this point in the history
  • Loading branch information
messmerd committed Sep 23, 2024
1 parent 62efd0e commit b7883f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/PluginPinConnector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace
{

// Scratch pad for intermediate calculations within this class
thread_local auto WorkingBuffer = std::array<float, DEFAULT_BUFFER_SIZE>();
thread_local auto WorkingBuffer = std::array<float, MAXIMUM_BUFFER_SIZE>();

} // namespace

Expand Down

0 comments on commit b7883f1

Please sign in to comment.