1
0
Fork 0
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:
tpoole 2017-09-20 10:04:11 +01:00
parent fec19eeade
commit 554d055a8f

View file

@ -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");