mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-20 18:42:26 +00:00
- Fix issues with spritetypebase
int angle methods.
This commit is contained in:
parent
fe6fcdff1f
commit
7600a77641
1 changed files with 2 additions and 2 deletions
|
@ -501,12 +501,12 @@ struct spritetypebase
|
|||
|
||||
void set_int_ang(int a)
|
||||
{
|
||||
angle = DAngle::fromDeg(a);
|
||||
angle = DAngle::fromBuild(a);
|
||||
}
|
||||
|
||||
void add_int_ang(int a)
|
||||
{
|
||||
angle += DAngle::fromDeg(a);
|
||||
angle += DAngle::fromBuild(a);
|
||||
}
|
||||
|
||||
void copy_ang(const spritetypebase* other)
|
||||
|
|
Loading…
Reference in a new issue