mirror of
				https://github.com/vsariola/sointu.git
				synced 2025-11-04 08:54:42 -05:00 
			
		
		
		
	The modulated delay time was converted to int with i32.trunc_f32_u. This throws runtime error if the modulations caused the delaytime to become negative, because _u implied that it should be unsigned integer and negative numbers were out of range. Using i32.trunc_f32_s fixed this.