guess I can't have atomic for an array in Clang. ok

also the indenting was mixed so I had to fix it which is why the diff here is so wacky
This commit is contained in:
Kae 2024-12-31 18:55:37 +11:00
parent c0fd5c0a60
commit c14a99a7c3
2 changed files with 404 additions and 399 deletions

File diff suppressed because it is too large Load Diff

View File

@ -89,7 +89,7 @@ public:
atomic<bool> playing = 0;
atomic<float> decibelLevel = -96.0f;
atomic<float> volume = 1.0f;
atomic<std::array<float, 2>> channelVolumes = std::array<float, 2>{1.0f, 1.0f};
Vec2F channelVolumes = Vec2F::filled(1.f);
unsigned int minimumPlaySamples = 4096;