Warning fix for gcc ;)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6727 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
NeoBrainX 2011-01-03 01:59:44 +00:00
parent b7f7a248c5
commit fea85945da

View file

@ -182,7 +182,7 @@ inline u32 Z24ToZ16ToZ24(u32 src)
}
// returns the exponent of the smallest power of two which is greater than val
static unsigned int GetPow2(unsigned int val)
inline unsigned int GetPow2(unsigned int val)
{
unsigned int ret = 0;
for (; val; val >>= 1)