mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
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:
@ -182,7 +182,7 @@ inline u32 Z24ToZ16ToZ24(u32 src)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// returns the exponent of the smallest power of two which is greater than val
|
// 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;
|
unsigned int ret = 0;
|
||||||
for (; val; val >>= 1)
|
for (; val; val >>= 1)
|
||||||
|
Reference in New Issue
Block a user