diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/fxge/dib/cfx_imagetransformer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxge/dib/cfx_imagetransformer.cpp b/core/fxge/dib/cfx_imagetransformer.cpp index 6f3ab86996..5067de4710 100644 --- a/core/fxge/dib/cfx_imagetransformer.cpp +++ b/core/fxge/dib/cfx_imagetransformer.cpp @@ -188,8 +188,8 @@ class CFX_BilinearMatrix : public CPDF_FixedMatrix { *x1 = pdfium::base::saturated_cast<int>(val.first / kBase); *y1 = pdfium::base::saturated_cast<int>(val.second / kBase); - *res_x = static_cast<int>(fmodf(val.first, kBase)); - *res_y = static_cast<int>(fmodf(val.second, kBase)); + *res_x = static_cast<int>(val.first) % kBase; + *res_y = static_cast<int>(val.second) % kBase; if (*res_x < 0 && *res_x > -kBase) *res_x = kBase + *res_x; if (*res_y < 0 && *res_y > -kBase) |