From 792008d5589c7c192f1317eaa45368249d117de1 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Mon, 27 Jun 2016 21:44:14 +0200 Subject: [PATCH] apparently 0 isn't O. I've been lied to for years. --- cores/libretro-ffmpeg/fft/fft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/libretro-ffmpeg/fft/fft.cpp b/cores/libretro-ffmpeg/fft/fft.cpp index 4dafad2018..7051adccee 100644 --- a/cores/libretro-ffmpeg/fft/fft.cpp +++ b/cores/libretro-ffmpeg/fft/fft.cpp @@ -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)