shithub: sms

Download patch

ref: 4daef9ef8beb9ff227fd571eab9e1f5462ec840a
parent: 8dd83d00a53de5ab6c05f14a29e6103d0cdfa254
author: Jean-André Santoni <jean.andre.santoni@gmail.com>
date: Wed Sep 25 17:31:34 EDT 2024

Fix a wrong type

--- a/sms.c
+++ b/sms.c
@@ -154,7 +154,7 @@
 	doflush = 1;
 }
 
-static uint16_t samples[736 * 2 * 2] = {0};
+static int16_t samples[736 * 2 * 2] = {0};
 
 void
 audioout(void)
--