From 8ab2f0b3081f53692836035aedd2546b607decc8 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Mon, 2 Feb 2015 00:14:07 +0100 Subject: fix some usages of abs(), part 1: non-gamelogic-changing changes detected by Clang changes in tr_main.c reviewed by SmileTheory --- src/ui/ui_shared.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ui') diff --git a/src/ui/ui_shared.c b/src/ui/ui_shared.c index 2b491579..b027b513 100644 --- a/src/ui/ui_shared.c +++ b/src/ui/ui_shared.c @@ -1689,10 +1689,10 @@ void Menu_TransitionItemByName( menuDef_t *menu, const char *p, rectDef_t rectFr item->window.offsetTime = time; memcpy( &item->window.rectClient, &rectFrom, sizeof( rectDef_t ) ); memcpy( &item->window.rectEffects, &rectTo, sizeof( rectDef_t ) ); - item->window.rectEffects2.x = abs( rectTo.x - rectFrom.x ) / amt; - item->window.rectEffects2.y = abs( rectTo.y - rectFrom.y ) / amt; - item->window.rectEffects2.w = abs( rectTo.w - rectFrom.w ) / amt; - item->window.rectEffects2.h = abs( rectTo.h - rectFrom.h ) / amt; + item->window.rectEffects2.x = fabs( rectTo.x - rectFrom.x ) / amt; + item->window.rectEffects2.y = fabs( rectTo.y - rectFrom.y ) / amt; + item->window.rectEffects2.w = fabs( rectTo.w - rectFrom.w ) / amt; + item->window.rectEffects2.h = fabs( rectTo.h - rectFrom.h ) / amt; Item_UpdatePosition( item ); } } -- cgit