summaryrefslogtreecommitdiffstats
path: root/gst/goom/filters.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/goom/filters.c')
-rw-r--r--gst/goom/filters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/goom/filters.c b/gst/goom/filters.c
index 3014c352..9bb97c94 100644
--- a/gst/goom/filters.c
+++ b/gst/goom/filters.c
@@ -214,8 +214,8 @@ zoomVector (ZoomFilterFXWrapperData * data, float X, float Y)
/* Noise */
if (data->noisify) {
- vx += (((float) random ()) / ((float) RAND_MAX) - 0.5f) / 50.0f;
- vy += (((float) random ()) / ((float) RAND_MAX) - 0.5f) / 50.0f;
+ vx += (((float) rand ()) / ((float) RAND_MAX) - 0.5f) / 50.0f;
+ vy += (((float) rand ()) / ((float) RAND_MAX) - 0.5f) / 50.0f;
}
/* Hypercos */