diff --git a/libs/geom/include/psemek/geom/camera.hpp b/libs/geom/include/psemek/geom/camera.hpp index 4e2a73ef..a723c5de 100644 --- a/libs/geom/include/psemek/geom/camera.hpp +++ b/libs/geom/include/psemek/geom/camera.hpp @@ -55,18 +55,18 @@ namespace psemek::geom struct orthographic_camera : camera { - geom::box box; + geom::box box; orthographic_camera() = default; - orthographic_camera(geom::box const & box) + orthographic_camera(geom::box const & box) { this->box[0] = box[0]; this->box[1] = box[1]; this->box[2] = {-1.f, 1.f}; } - orthographic_camera(geom::box const & box) + orthographic_camera(geom::box const & box) : box{box} {}