diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-03 08:18:07 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-03 08:18:07 +0200 |
commit | da80fd4f163ad403da122fc950847c85c3236a32 (patch) | |
tree | 2d3bd8f08fb44d6de294f0a9c90d5ca11d3ec188 /mwe/audio/soloud | |
parent | 90174919ba8c019d4b88915557be0adc3769b3e6 (diff) | |
parent | f8b2f9f3a2557313d37d53042dd36f0063f2ee61 (diff) |
Merge branch 'master' of pipeframe.xyz:school/project-spc
Diffstat (limited to 'mwe/audio/soloud')
-rw-r--r-- | mwe/audio/soloud/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mwe/audio/soloud/main.cpp b/mwe/audio/soloud/main.cpp index 25ba003..50df0b7 100644 --- a/mwe/audio/soloud/main.cpp +++ b/mwe/audio/soloud/main.cpp @@ -38,8 +38,7 @@ int main() { this_thread::sleep_for(500ms); // play all samples simultaniously - for (unsigned i = 0; i < 3; i++) - soloud.play(sfx[i]); + for (unsigned i = 0; i < 3; i++) soloud.play(sfx[i]); this_thread::sleep_for(1000ms); // stop all audio and exit |