mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-11 21:37:17 +00:00
apparently 0 isn't O. I've been lied to for years.
This commit is contained in:
parent
996f9a59b7
commit
792008d558
@ -305,7 +305,7 @@ static void fft_step(glfft_t *fft,
|
||||
|
||||
static inline unsigned log2i(unsigned x)
|
||||
{
|
||||
if (x==0) return 0xBAADFOOD; // shouldn't happen
|
||||
if (x==0) return 0xBADF00D4U; // shouldn't happen
|
||||
|
||||
unsigned res;
|
||||
for (res = 0; x; x >>= 1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user