mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
Fix warning about using abs() with floats (#222)
This commit is contained in:
parent
7c252066a3
commit
a33a904225
1 changed files with 4 additions and 4 deletions
|
@ -1121,10 +1121,10 @@ void Menu_TransitionItemByName(menuDef_t *menu, const char *p, rectDef_t rectFro
|
|||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue