summaryrefslogtreecommitdiff
path: root/src/audio/synth.cc
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-01-31 21:11:11 +0100
committerskal <pascal.massimino@gmail.com>2026-01-31 21:11:11 +0100
commit25e693cc46324b4ec588530de542bba8af6f47c6 (patch)
tree8a959e442f9330dd3f881fe4109e83b831f25a7e /src/audio/synth.cc
parent9379697ccdf6f44ade7933d5635f72f644f6b92e (diff)
style: add vertical compression rules to clang-format
- Enabled AllowShortFunctionsOnASingleLine: All - Enabled AllowShortBlocksOnASingleLine: Always - Enabled AllowShortIfStatementsOnASingleLine: Always - Enabled AllowShortLoopsOnASingleLine: true - Set MaxEmptyLinesToKeep: 1 - Applied formatting to all source files.
Diffstat (limited to 'src/audio/synth.cc')
-rw-r--r--src/audio/synth.cc11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/audio/synth.cc b/src/audio/synth.cc
index 523d3d7..b4aaf53 100644
--- a/src/audio/synth.cc
+++ b/src/audio/synth.cc
@@ -146,8 +146,7 @@ void synth_render(float *output_buffer, int num_frames) {
for (int v_idx = 0; v_idx < MAX_VOICES; ++v_idx) {
Voice &v = g_voices[v_idx];
- if (!v.active)
- continue;
+ if (!v.active) continue;
if (v.buffer_pos >= DCT_SIZE) {
if (v.current_spectral_frame >= v.total_spectral_frames) {
@@ -193,13 +192,9 @@ void synth_render(float *output_buffer, int num_frames) {
int synth_get_active_voice_count() {
int count = 0;
for (int i = 0; i < MAX_VOICES; ++i) {
- if (g_voices[i].active) {
- count++;
- }
+ if (g_voices[i].active) { count++; }
}
return count;
}
-float synth_get_output_peak() {
- return g_current_output_peak;
-}
+float synth_get_output_peak() { return g_current_output_peak; }