make ARRAYSIZE 'return' an int

svn-id: r7618
This commit is contained in:
Max Horn 2003-05-17 23:36:47 +00:00
parent c79d40e1e3
commit a5607d3fa2

View File

@ -38,7 +38,7 @@
template<class T>
static inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; }
#define ARRAYSIZE(x) (sizeof(x) / sizeof(x[0]))
#define ARRAYSIZE(x) ((int)(sizeof(x) / sizeof(x[0])))
int RGBMatch(byte *palette, int r, int g, int b);
int Blend(int src, int dst, byte *palette);