mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
make ARRAYSIZE 'return' an int
svn-id: r7618
This commit is contained in:
parent
c79d40e1e3
commit
a5607d3fa2
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user