From 84f5e470da3d4125553c3390a9118e23364f61e3 Mon Sep 17 00:00:00 2001 From: Rebekah Rowe Date: Thu, 7 Apr 2022 14:11:00 -0400 Subject: [PATCH] Fixed uninitialized variable --- include/glez/font.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/glez/font.hpp b/include/glez/font.hpp index 74d6acd..77ca77b 100644 --- a/include/glez/font.hpp +++ b/include/glez/font.hpp @@ -33,7 +33,7 @@ public: [[deprecated]] void load() { } [[deprecated]] void unload() { } [[deprecated]] const std::string path; - [[deprecated]] const float size; + [[deprecated]] const float size = 1; }; } // namespace glez