1
0
Fork 0

Modified Files:

src/FDM/YASim/Launchbar.cpp: Olaf Flebbe: Make sure expressions
	stay floats.
This commit is contained in:
frohlich 2007-01-31 20:50:17 +00:00
parent fbb676cbbe
commit 32d3d33fea

View file

@ -7,8 +7,8 @@
namespace yasim {
static const float YASIM_PI2 = 3.14159265358979323846/2;
static const float YASIM_PI = 3.14159265358979323846;
static const float YASIM_PI2 = 3.14159265358979323846f/2;
static const float YASIM_PI = 3.14159265358979323846f;
static const float RAD2DEG = 180/YASIM_PI;
Launchbar::Launchbar()