diff --git a/Source/engine.h b/Source/engine.h index 131cc281d..f712bfa94 100644 --- a/Source/engine.h +++ b/Source/engine.h @@ -205,7 +205,7 @@ struct Point { { Point offset = abs(*this - other); - return std::max(offset.x, offset.y); + return std::max(offset.x, offset.y); } };