Merge remote-tracking branch 'origin/main' into pjb-audio

This commit is contained in:
PJB3005
2026-03-19 20:16:57 +01:00
205 changed files with 5689 additions and 2051 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
#include <limits>
void JASCalc::imixcopy(const s16* s1, const s16* s2, s16* dst, u32 n) {
for (n; n != 0; n--) {
for (; n != 0; n--) {
*dst++ = *(s1)++;
*dst++ = *(s2)++;
}