diff --git a/dll/win32/gdiplus/graphics.c b/dll/win32/gdiplus/graphics.c index 199b20442b2..dae43623da6 100644 --- a/dll/win32/gdiplus/graphics.c +++ b/dll/win32/gdiplus/graphics.c @@ -3264,7 +3264,11 @@ GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image if (do_resampling) { +#ifdef __REACTOS__ // CORE-19456 + DOUBLE delta_xx, delta_xy, delta_yx, delta_yy; +#else REAL delta_xx, delta_xy, delta_yx, delta_yy; +#endif /* Transform the bits as needed to the destination. */ dst_data = dst_dyn_data = heap_alloc_zero(sizeof(ARGB) * (dst_area.right - dst_area.left) * (dst_area.bottom - dst_area.top));