1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

VST3: Fix a bug converting a compatibility ID to a string

This commit is contained in:
Anthony Nicholls 2025-06-12 10:24:40 +01:00 committed by Anthony Nicholls
parent 7c7e51176e
commit 26edac975d

View file

@ -103,12 +103,11 @@ public:
{
str << "\""
<< std::hex
<< std::setw (2)
<< std::setfill ('0')
<< std::uppercase;
for (auto byte : oldIds[i])
str << (int) byte;
str << std::setw (2) << (int) byte;
str.clear();
str << "\"";