ohsp

Prototype for a game with dual thruster controls.
Log | Files | Refs | LICENSE

commit 7a555e9d86177509a820eea9f8f1a6978376ab72
parent 94fca2bb4d579ac4dbb51dc57ee395b29c21a887
Author: Amin Mesbah <mesbahamin@gmail.com>
Date:   Mon, 18 Dec 2017 00:28:57 -0800

Use a better Pi

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