ohsp

Prototype for a game with dual thruster controls.
git clone git://git.amin.space/ohsp.git
Log | Files | Refs | LICENSE

commit 55191d8909d6f3ab347c09f927dd88cb20bcdb5a
parent f067aef70930873d14de3a217d86dba28b4a8c54
Author: amin <dev@aminmesbah.com>
Date:   Mon, 18 Dec 2017 08:28:57 +0000

Use a better Pi

FossilOrigin-Name: 037a78141ac9aacc4ebdc757dd9b3cfd1ac777c3581d4dd719a6cae4716d3a76
Diffstat:
Msrc/game.h | 2+-
Msrc/vector.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/game.h b/src/game.h @@ -17,7 +17,7 @@ #define MS_PER_UPDATE (SECOND / UPDATES_PER_SECOND) #ifndef M_PI -#define M_PI 3.141592f +#define M_PI 3.14159265358979f #endif #define COLOR_BACKGROUND 0x000000 diff --git a/src/vector.h b/src/vector.h @@ -5,7 +5,7 @@ #include <stdint.h> #ifndef M_PI -#define M_PI 3.141592f +#define M_PI 3.14159265358979f #endif struct Vec2d