From 11e33ba3fc1b65789358485fa50cdbc0cf26aac7 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 17 Aug 2018 20:30:20 -0700 Subject: JANITORIAL: Removing trailing spaces after int casts --- graphics/transparent_surface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics/transparent_surface.cpp') diff --git a/graphics/transparent_surface.cpp b/graphics/transparent_surface.cpp index 2a6fa7bfdf..02611aa60f 100644 --- a/graphics/transparent_surface.cpp +++ b/graphics/transparent_surface.cpp @@ -913,8 +913,8 @@ TransparentSurface *TransparentSurface::scaleT(uint16 newWidth, uint16 newHeight */ int spixelw = (srcW - 1); int spixelh = (srcH - 1); - int sx = (int) (65536.0f * (float) spixelw / (float) (dstW - 1)); - int sy = (int) (65536.0f * (float) spixelh / (float) (dstH - 1)); + int sx = (int)(65536.0f * (float) spixelw / (float) (dstW - 1)); + int sy = (int)(65536.0f * (float) spixelh / (float) (dstH - 1)); /* Maximum scaled source size */ int ssx = (srcW << 16) - 1; -- cgit v1.2.3