| 556 | } |
| 557 | |
| 558 | void Assets::queueAudios(StringList const& paths) const { |
| 559 | queueAssets(paths.transformed([](String const& path) { |
| 560 | auto components = AssetPath::split(path); |
| 561 | validatePath(components, false, false); |
| 562 | |
| 563 | return AssetId{AssetType::Audio, std::move(components)}; |
| 564 | })); |
| 565 | } |
| 566 | |
| 567 | void Assets::queueAudios(CaseInsensitiveStringSet const& paths) const { |
| 568 | MutexLocker assetsLocker(m_assetsMutex); |
nothing calls this directly
no test coverage detected