From eeb31b425e73e967eb830e2523c6bf789c28fe09 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 6 Mar 2005 20:26:42 +0000 Subject: [PATCH] fixed sound truncation bug --- src/swfc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swfc.c b/src/swfc.c index 49b3998..092a49d 100644 --- a/src/swfc.c +++ b/src/swfc.c @@ -1178,7 +1178,7 @@ void s_sound(char*name, char*filename) U16*samples; int numsamples; int t; - int blocksize = 576; + int blocksize = 1152; if(!readWAV(filename, &wav)) { warning("Couldn't read wav file \"%s\"", filename); -- 1.7.10.4