mirror of
https://github.com/ZDoom/zdbsp.git
synced 2024-11-21 19:32:31 +00:00
- Fixed: Undefined negative double to unsigned int conversion in PointToAngle.
This commit is contained in:
parent
9ca9db2893
commit
9e88e9cb60
1 changed files with 2 additions and 1 deletions
3
main.cpp
3
main.cpp
|
@ -688,7 +688,8 @@ angle_t PointToAngle (fixed_t x, fixed_t y)
|
|||
double ang = atan2 (double(y), double(x));
|
||||
const double rad2bam = double(1<<30) / M_PI;
|
||||
double dbam = ang * rad2bam;
|
||||
return angle_t(dbam) << 1;
|
||||
// Convert to signed first since negative double to unsigned is undefined.
|
||||
return angle_t(int(dbam)) << 1;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
Loading…
Reference in a new issue