diff --git a/deps/ox/src/ox/std/point.hpp b/deps/ox/src/ox/std/point.hpp index ca6c57f4..e902f5e8 100644 --- a/deps/ox/src/ox/std/point.hpp +++ b/deps/ox/src/ox/std/point.hpp @@ -17,8 +17,8 @@ class Point { public: static constexpr auto TypeName = "net.drinkingtea.ox.Point"; static constexpr auto TypeVersion = 1; - int x = 0; - int y = 0; + int32_t x = 0; + int32_t y = 0; constexpr Point() noexcept = default; diff --git a/deps/ox/src/ox/std/size.hpp b/deps/ox/src/ox/std/size.hpp index 3b03f536..368fe45a 100644 --- a/deps/ox/src/ox/std/size.hpp +++ b/deps/ox/src/ox/std/size.hpp @@ -17,8 +17,8 @@ class Size { public: static constexpr auto TypeName = "net.drinkingtea.ox.Size"; static constexpr auto TypeVersion = 1; - int width = 0; - int height = 0; + int32_t width = 0; + int32_t height = 0; constexpr Size() noexcept = default;