diff options
Diffstat (limited to 'src/post')
-rw-r--r-- | src/post/goom/filters.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/post/goom/filters.c b/src/post/goom/filters.c index 680b01029..47c42751e 100644 --- a/src/post/goom/filters.c +++ b/src/post/goom/filters.c @@ -57,14 +57,14 @@ static void select_zoom_filter (void) { if (firsttime){ if (zoom_filter_xmmx_supported()) { zf_use_xmmx = 1; - printf ("Extented MMX detected. Using the fastest method !\n"); + /* printf ("Extented MMX detected. Using the fastest method !\n"); */ } else if (zoom_filter_mmx_supported()) { zf_use_mmx = 1; - printf ("MMX detected. Using fast method !\n"); + /* printf ("MMX detected. Using fast method !\n"); */ } else { - printf ("Too bad ! No MMX detected.\n"); + /* printf ("Too bad ! No MMX detected.\n"); */ } firsttime = 0; } |