mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
WinRT MIDI: Increased the maximum size of outgoing messages
This commit is contained in:
parent
fec19eeade
commit
554d055a8f
1 changed files with 1 additions and 1 deletions
|
|
@ -998,7 +998,7 @@ private:
|
|||
if (bufferFactory == nullptr)
|
||||
throw std::runtime_error ("Failed to create output buffer factory");
|
||||
|
||||
HRESULT hr = bufferFactory->Create (static_cast<UINT32> (256), buffer.resetAndGetPointerAddress());
|
||||
HRESULT hr = bufferFactory->Create (static_cast<UINT32> (65536), buffer.resetAndGetPointerAddress());
|
||||
if (FAILED (hr))
|
||||
throw std::runtime_error ("Failed to create output buffer");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue