From: matthew Date: Sun, 29 Jul 2018 19:13:44 +0000 (+0000) Subject: fixed incorrect function names X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=a59842448461a271840b4e6dd0e2d696d7d27fe0;p=csrpg.git fixed incorrect function names --- diff --git a/common/point.c b/common/point.c index 0e480e8..3eecf1a 100644 --- a/common/point.c +++ b/common/point.c @@ -25,14 +25,14 @@ Point4i point4i(int w, int x, int y, int z) return p; } -Point2f point2f(int x, int y) +Point2f point2f(float x, float y) { Point2f p; p.x = x; p.y = y; return p; } -Point3f point3f(int x, int y, int z) +Point3f point3f(float x, float y, float z) { Point3f p; p.x = x; @@ -40,7 +40,7 @@ Point3f point3f(int x, int y, int z) p.z = z; return p; } -Point4f point4f(int w, int x, int y, int z) +Point4f point4f(float w, float x, float y, float z) { Point4f p; p.w = w;