diff options
author | Nils Wallménius <nils@rockbox.org> | 2010-07-30 09:14:28 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2010-07-30 09:14:28 +0000 |
commit | 8082ae089d01c244b8e3242383a5821fb74194b4 (patch) | |
tree | d4125da6baaea2c8ef7c34a7b163780ea5f803a3 /apps | |
parent | ba41fa537a432210147586b1442ab67b6d400d18 (diff) |
libwmapro: fix comment for coldfire fixmul31.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27626 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs/libwmapro/wmapro_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwmapro/wmapro_math.h b/apps/codecs/libwmapro/wmapro_math.h index b605f275e8..f5cfa5f1d9 100644 --- a/apps/codecs/libwmapro/wmapro_math.h +++ b/apps/codecs/libwmapro/wmapro_math.h @@ -123,7 +123,7 @@ t2; \ }) - /* Calculates: result = (X*Y)>>32 */ + /* Calculates: result = (X*Y)>>31 (loses one bit of precision) */ #define fixmul31(X,Y) \ ({ \ int32_t t; \ |