From 26edac975dcf5cac44be6d98d317aaf6e5cdcf3d Mon Sep 17 00:00:00 2001 From: Anthony Nicholls Date: Thu, 12 Jun 2025 10:24:40 +0100 Subject: [PATCH] VST3: Fix a bug converting a compatibility ID to a string --- modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h b/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h index ce11ecbef9..4a2cab11f9 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h @@ -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 << "\"";