diff options
author | Chris Robinson <[email protected]> | 2018-05-15 01:20:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-05-15 01:20:39 -0700 |
commit | 197e88cdcc62ac1c9e8be2240c52c4f108ac27b6 (patch) | |
tree | 2d0c42563e77612bba4dc51caf70358ffd54f083 /Alc/effects/pshifter.c | |
parent | 4ac488991265ce212109e7b419f18399d3b75ee9 (diff) |
Avoid using unsigned values for signed
Diffstat (limited to 'Alc/effects/pshifter.c')
-rw-r--r-- | Alc/effects/pshifter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/pshifter.c b/Alc/effects/pshifter.c index 7411f705..9c2bb2e9 100644 --- a/Alc/effects/pshifter.c +++ b/Alc/effects/pshifter.c @@ -125,7 +125,7 @@ static inline ALint double2int(ALdouble d) if(UNLIKELY(shift >= 63 || shift < -52)) return 0; - mant = (conv.i64&U64(0xfffffffffffff)) | U64(0x10000000000000); + mant = (conv.i64&I64(0xfffffffffffff)) | I64(0x10000000000000); if(LIKELY(shift < 0)) return (ALint)(mant >> -shift) * sign; return (ALint)(mant << shift) * sign; |