summaryrefslogtreecommitdiffstats
path: root/src/math/intsize.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/intsize.h')
-rw-r--r--src/math/intsize.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/intsize.h b/src/math/intsize.h
index d53de85..c88f09b 100644
--- a/src/math/intsize.h
+++ b/src/math/intsize.h
@@ -34,9 +34,9 @@ namespace Math
struct IntSize
{
//! Width
- long w;
+ int w;
//! Height
- long h;
+ int h;
//! Constructs a zero size: (0,0)
inline IntSize()
@@ -45,7 +45,7 @@ struct IntSize
}
//! Constructs a size from given dimensions: (w,h)
- inline explicit IntSize(long w, long h)
+ inline explicit IntSize(int w, int h)
{
this->w = w;
this->h = h;