diff src/libSAD/dither_ops.c @ 4757:bb0638143fc8

move libSAD's DEBUG_MSG out of global scope, as it breaks timidity and possible something else
author Andrew O. Shadoura <bugzilla@tut.by>
date Thu, 07 Aug 2008 12:29:24 +0300
parents 21008f43bb93
children
line wrap: on
line diff
--- a/src/libSAD/dither_ops.c	Thu Aug 07 03:54:15 2008 +0300
+++ b/src/libSAD/dither_ops.c	Thu Aug 07 12:29:24 2008 +0300
@@ -23,6 +23,8 @@
 #include "dither_ops.h"
 #include "dither.h"
 
+#include "debug.h"
+
 #define SAD_GET_LE16(a) ( (uint16_t)(((uint8_t*)(a))[0])      | (uint16_t)(((uint8_t*)(a))[1]) << 8 )
 #define SAD_GET_BE16(a) ( (uint16_t)(((uint8_t*)(a))[0]) << 8 | (uint16_t)(((uint8_t*)(a))[1]) )