From cc4b2c645bd753f9f7688f635011a06105f7d57c Mon Sep 17 00:00:00 2001 From: lisyarus Date: Sat, 13 May 2023 00:04:06 +0300 Subject: [PATCH] Replace float_t with float (like wtf) --- libs/geom/include/psemek/geom/camera.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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} {}