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:
parent
7c7e51176e
commit
26edac975d
1 changed files with 1 additions and 2 deletions
|
|
@ -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 << "\"";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue