diff options
Diffstat (limited to 'src/gui/rect.h')
-rw-r--r-- | src/gui/rect.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/rect.h b/src/gui/rect.h index 994886e92..303781354 100644 --- a/src/gui/rect.h +++ b/src/gui/rect.h @@ -93,9 +93,9 @@ class Rect notfinal * @param height_ The height of the rectangle. */ constexpr Rect(const int x_, - const int y_, - const int width_, - const int height_) : + const int y_, + const int width_, + const int height_) : x(x_), y(y_), width(width_), |