mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
- made AnimSet's vel parameter an actual double.
This does not affect any outcome, it just avoids pointless type conversions.
This commit is contained in:
parent
4ac3820511
commit
f4c8ac0140
2 changed files with 3 additions and 3 deletions
|
@ -1609,8 +1609,8 @@ void RefreshInfoLine(PLAYER* pp);
|
|||
void DoAnim(int numtics);
|
||||
void AnimDelete(int animtype, int animindex, DSWActor*);
|
||||
short AnimGetGoal(int animtype, int animindex, DSWActor*);
|
||||
int AnimSet(int animtype, int animindex, DSWActor* animactor, double thegoal, int thevel);
|
||||
int AnimSet(int animtype, sectortype* animindex, double thegoal, int thevel)
|
||||
int AnimSet(int animtype, int animindex, DSWActor* animactor, double thegoal, double thevel);
|
||||
int AnimSet(int animtype, sectortype* animindex, double thegoal, double thevel)
|
||||
{
|
||||
return AnimSet(animtype, sectnum(animindex), nullptr, thegoal, thevel);
|
||||
}
|
||||
|
|
|
@ -2776,7 +2776,7 @@ void AnimDelete(int animtype, int animindex, DSWActor* animactor)
|
|||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
int AnimSet(int animtype, int animindex, DSWActor* animactor, double thegoal, int thevel)
|
||||
int AnimSet(int animtype, int animindex, DSWActor* animactor, double thegoal, double thevel)
|
||||
{
|
||||
int i, j;
|
||||
|
||||
|
|
Loading…
Reference in a new issue