VCVRack / VCV-Prototype

Other
130 stars 22 forks source link

Fix extension handling to work with the V2 SDK. #62

Closed sleexyz closed 1 year ago

sleexyz commented 2 years ago

This fixes extension handling and registration to work with V2 by using strings that include the leading ..

The V2 SDK's system::getExtension returns strings with a leading . (as it uses std::filesystem::path::extension under the hood) whereas V1's string::filenameExtension doesn't.

61