summaryrefslogtreecommitdiffstats
path: root/gst/goom
diff options
context:
space:
mode:
Diffstat (limited to 'gst/goom')
-rw-r--r--gst/goom/filters.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/goom/filters.c b/gst/goom/filters.c
index e3153aa5..866885be 100644
--- a/gst/goom/filters.c
+++ b/gst/goom/filters.c
@@ -237,7 +237,8 @@ setPixelRGB_ (Uint * buffer, Uint x, Color c, guint32 resolx, guint32 resoly)
{
#ifdef _DEBUG
if (x >= resolx * resoly) {
- printf ("setPixel ERROR : hors du tableau... %i, %i\n", x, y);
+ printf ("setPixel ERROR : hors du tableau... %i >= %i*%i (%i)\n", x, resolx,
+ resoly, resolx * resoly);
exit (1);
}
#endif