diff options
Diffstat (limited to 'src/devices/video/vooddefs.h')
-rw-r--r-- | src/devices/video/vooddefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/vooddefs.h b/src/devices/video/vooddefs.h index f579d7454db..0840f80eaf4 100644 --- a/src/devices/video/vooddefs.h +++ b/src/devices/video/vooddefs.h @@ -138,14 +138,14 @@ static inline int32_t fast_reciplog(int64_t value, int32_t *log2) uint32_t temp, recip, rlog; uint32_t interp; uint32_t *table; - int neg = FALSE; + int neg = false; int lz, exp = 0; /* always work with unsigned numbers */ if (value < 0) { value = -value; - neg = TRUE; + neg = true; } /* if we've spilled out of 32 bits, push it down under 32 */ |