Commit 4d24fc41 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msrle32: Remove superfluous defines.

parent 44c22801
......@@ -36,13 +36,10 @@ static HINSTANCE MSRLE32_hModule = 0;
#define compare_fourcc(fcc1, fcc2) (((fcc1)^(fcc2))&~0x20202020)
#define ABS(a) ((a) < 0 ? -(a) : (a))
#define SQR(a) ((a) * (a))
static inline WORD ColorCmp(WORD clr1, WORD clr2)
{
UINT a = clr1 - clr2;
return SQR(a);
return a * a;
}
static inline WORD Intensity(RGBQUAD clr)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment