LTVA1 %!s(int64=2) %!d(string=hai) anos
pai
achega
684261dea0
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      sound_engine/sound_engine_adsr.c

+ 2 - 1
sound_engine/sound_engine_adsr.c

@@ -54,5 +54,6 @@ int32_t sound_engine_cycle_and_output_adsr(
     }
     }
 
-    return (int32_t)((int32_t)input * (int32_t)(adsr->envelope >> 10) / (int32_t)(MAX_ADSR >> 10) * (int32_t)adsr->volume / (int32_t)MAX_ADSR_VOLUME);
+    return (int32_t)((int32_t)input * (int32_t)(adsr->envelope >> 10) / (int32_t)(MAX_ADSR >> 10) *
+                     (int32_t)adsr->volume / (int32_t)MAX_ADSR_VOLUME);
 }