- some rework of vectors.h, mostly to remove all those silenced double->float conversions.

This commit is contained in:
Christoph Oelckers 2016-03-10 22:36:28 +01:00
commit 9843f16cc0
6 changed files with 100 additions and 94 deletions

View file

@ -37,6 +37,7 @@
* Cleaned up the source
*/
#include <math.h>
#ifdef _WIN32
#include <dos.h>
#include <conio.h>
@ -45,7 +46,7 @@
#include "opl.h"
#include "c_cvars.h"
#define HALF_PI (PI*0.5)
const double HALF_PI = (M_PI*0.5);
EXTERN_CVAR(Int, opl_core)
extern int current_opl_core;