Mercurial > hg > openttd
changeset 6006:9674f328e6c6 draft
(svn r8727) -Cleanup (r8366): Remove BIGMULSS64 since it isn't used any more.
author | maedhros <maedhros@openttd.org> |
---|---|
date | Wed, 14 Feb 2007 09:39:04 +0000 |
parents | 0a5324533569 |
children | 5570d910689c |
files | src/macros.h |
diffstat | 1 files changed, 0 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/macros.h +++ b/src/macros.h @@ -50,10 +50,6 @@ return (int32)(((int64)(a) * (int64)(b)) >> (shift)); } -static inline int64 BIGMULSS64(int64 a, int64 b, int shift) { - return ((a) * (b)) >> (shift); -} - static inline uint32 BIGMULUS(uint32 a, uint32 b, int shift) { return (uint32)(((uint64)(a) * (uint64)(b)) >> (shift)); }