Merge pull request #2 from Blzut3/master

Fix Raspberry Pi node building issue
This commit is contained in:
rheit 2016-01-27 12:04:53 -06:00
commit 7736ffd1b9

View file

@ -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;
}
//==========================================================================