From 80a087806e7fe5c0f9bc43d5ffa76a1fa247a557 Mon Sep 17 00:00:00 2001 From: Kp Date: Fri, 15 Jul 2016 03:43:02 +0000 Subject: [PATCH] Remove useless cast in gamefont.h --- common/main/gamefont.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/main/gamefont.h b/common/main/gamefont.h index c2bd13670..a270efe2e 100644 --- a/common/main/gamefont.h +++ b/common/main/gamefont.h @@ -55,7 +55,7 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. extern float FNTScaleX, FNTScaleY; // add (scaled) spacing to given font coordinate -#define LINE_SPACING (static_cast(FNTScaleY*(grd_curcanv->cv_font->ft_h+(GAME_FONT->ft_h/5)))) +#define LINE_SPACING (FNTScaleY * (grd_curcanv->cv_font->ft_h + (GAME_FONT->ft_h / 5))) extern array Gamefonts;