summaryrefslogtreecommitdiffstats
path: root/src/common/uint128.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/uint128.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/uint128.cpp b/src/common/uint128.cpp
index 7e77588db..16bf7c828 100644
--- a/src/common/uint128.cpp
+++ b/src/common/uint128.cpp
@@ -19,7 +19,11 @@ u64 MultiplyAndDivide64(u64 a, u64 b, u64 d) {
u128 r{};
r[0] = _umul128(a, b, &r[1]);
u64 remainder;
+#if _MSC_VER < 1923
+ return udiv128(r[1], r[0], d, &remainder);
+#else
return _udiv128(r[1], r[0], d, &remainder);
+#endif
}
#else