diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:27:14 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:27:14 +0200 |
commit | 65eda52aa51017f6f7aad158c4f8b6e91054cf0d (patch) | |
tree | a668f9374ef61a502bf691e3b13510d1dc9efca9 /mwe | |
parent | 8e67adc6828181b1df7c95da76f32962444fc7fd (diff) |
`make format`
Diffstat (limited to 'mwe')
-rw-r--r-- | mwe/audio/soloud/main.cpp | 3 | ||||
-rw-r--r-- | mwe/dynlink/exec/main.c | 1 |
2 files changed, 1 insertions, 3 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 diff --git a/mwe/dynlink/exec/main.c b/mwe/dynlink/exec/main.c index ea55feb..ff884f2 100644 --- a/mwe/dynlink/exec/main.c +++ b/mwe/dynlink/exec/main.c @@ -5,4 +5,3 @@ int main() { return 0; } - |