diff options
Diffstat (limited to '')
-rw-r--r-- | src/LinearUpscale.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LinearUpscale.h b/src/LinearUpscale.h index d4e9da82a..adc873912 100644 --- a/src/LinearUpscale.h +++ b/src/LinearUpscale.h @@ -184,15 +184,15 @@ template <typename TYPE> void LinearUpscale3DArray( TYPE RatioZ[MAX_UPSCALE_Z]; for (int x = 0; x <= a_UpscaleX; x++) { - RatioX[x] = static_cast<TYPE>(x / a_UpscaleX); + RatioX[x] = static_cast<TYPE>(x) / a_UpscaleX; } for (int y = 0; y <= a_UpscaleY; y++) { - RatioY[y] = static_cast<TYPE>(y / a_UpscaleY); + RatioY[y] = static_cast<TYPE>(y) / a_UpscaleY; } for (int z = 0; z <= a_UpscaleZ; z++) { - RatioZ[z] = static_cast<TYPE>(z / a_UpscaleZ); + RatioZ[z] = static_cast<TYPE>(z) / a_UpscaleZ; } // Interpolate each XYZ cell: |