maths api changes and random
[vg.git] / vg_audio_dsp.h
index c973cc9a865daa8c4238e5b00ee4ad780ae71392..0eaeb544ae6855da0687b106ad10eb8e0d4f3b15 100644 (file)
@@ -167,7 +167,7 @@ static void vg_dsp_init( void )
    for( int i=0; i<8; i++ ){
       float reflection_time = ((sizes[i])/343.0f) * 1000.0f;
 
-      float var   = 1.0f + (vg_randf()*2.0f - 1.0f) * reflection_variance,
+      float var   = 1.0f + (vg_randf64()*2.0f - 1.0f) * reflection_variance,
             total = reflection_time * var;
 
       dsp_init_delay( &__echos[i], total / 1000.0f );