Integrate new Jaby sprite
This commit is contained in:
@@ -5,7 +5,7 @@ namespace math {
|
||||
template<typename T>
|
||||
struct raw_math {
|
||||
constexpr T operator-() const {
|
||||
return T{.raw = -(static_cast<const T&>(*this).raw)};
|
||||
return T{.raw = static_cast<decltype(T::raw)>(-(static_cast<const T&>(*this).raw))};
|
||||
}
|
||||
|
||||
constexpr T operator+(const T& obj) const {
|
||||
|
Reference in New Issue
Block a user