Fix similar/3d/interp.cpp useless+old-style casts in DXX_WORDS_BIGENDIAN path

This commit is contained in:
Kp 2016-10-09 17:35:02 +00:00
parent 9dc30c6499
commit 3cc73ee69d

View file

@ -552,7 +552,7 @@ static void short_swap(short *s)
static void fix_swap(fix &f)
{
f = (fix)SWAPINT(static_cast<int>(f));
f = SWAPINT(f);
}
static void fix_swap(fix *f)