From 7bb1723876d365b8574f1c281134f0f46aea83fe Mon Sep 17 00:00:00 2001 From: epoch Date: Fri, 17 Jul 2020 04:01:24 -0500 Subject: this header got 4 constants moved into it that it should have gotten a long time ago. TOP, BOTTOM, RIGHT, LEFT --- src/graphics_c2.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/graphics_c2.h b/src/graphics_c2.h index 35920fd..8a481d9 100644 --- a/src/graphics_c2.h +++ b/src/graphics_c2.h @@ -3,6 +3,11 @@ #include "math.h" +#define TOP 240.0 +#define BOTTOM -240.0 +#define RIGHT 320.0 +#define LEFT -320.0 + int c2sX(real x); int s2cX(real x); int c2sY(real y); -- cgit v1.2.3