summaryrefslogtreecommitdiffstats
path: root/src/math/intpoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/intpoint.h')
-rw-r--r--src/math/intpoint.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/intpoint.h b/src/math/intpoint.h
index a760bc2..476e67b 100644
--- a/src/math/intpoint.h
+++ b/src/math/intpoint.h
@@ -32,11 +32,11 @@ namespace Math {
struct IntPoint
{
//! X coord
- long x;
+ int x;
//! Y coord
- long y;
+ int y;
- IntPoint(long aX = 0, long aY = 0) : x(aX), y(aY) {}
+ IntPoint(int aX = 0, int aY = 0) : x(aX), y(aY) {}
};
/* @} */ // end of group