mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r8727) -Cleanup (r8366): Remove BIGMULSS64 since it isn't used any more.
This commit is contained in:
parent
ecfbfbd98c
commit
f8b641e753
@ -50,10 +50,6 @@ static inline int32 BIGMULSS(int32 a, int32 b, int shift) {
|
|||||||
return (int32)(((int64)(a) * (int64)(b)) >> (shift));
|
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) {
|
static inline uint32 BIGMULUS(uint32 a, uint32 b, int shift) {
|
||||||
return (uint32)(((uint64)(a) * (uint64)(b)) >> (shift));
|
return (uint32)(((uint64)(a) * (uint64)(b)) >> (shift));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user