From dafae53018300d22e75af71d0d4523c1887e8ef7 Mon Sep 17 00:00:00 2001 From: Georg Hagen Date: Sun, 13 Jul 2025 11:22:33 +0200 Subject: [PATCH] Fix bug --- openVulkanoCpp/Controller/SceneIntersectionTestController.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openVulkanoCpp/Controller/SceneIntersectionTestController.hpp b/openVulkanoCpp/Controller/SceneIntersectionTestController.hpp index 4383e0b..95eb18d 100644 --- a/openVulkanoCpp/Controller/SceneIntersectionTestController.hpp +++ b/openVulkanoCpp/Controller/SceneIntersectionTestController.hpp @@ -17,7 +17,7 @@ namespace OpenVulkano::Scene class SceneIntersectionTestController : public ITickable { public: - SceneIntersectionTestController(): m_camera(nullptr_t) = default; + SceneIntersectionTestController(): m_camera(nullptr) {}; SceneIntersectionTestController(Camera* camera) : m_camera(camera) {}