From 06e7381b8b82db9836815d8a1493c1404522c158 Mon Sep 17 00:00:00 2001 From: Stepland <16676308+Stepland@users.noreply.github.com> Date: Sun, 9 Feb 2020 15:25:31 +0100 Subject: [PATCH] Fix debug menu --- src/Toolkit/Debuggable.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Toolkit/Debuggable.hpp b/src/Toolkit/Debuggable.hpp index c5ee599..0382a5d 100644 --- a/src/Toolkit/Debuggable.hpp +++ b/src/Toolkit/Debuggable.hpp @@ -6,6 +6,6 @@ namespace Toolkit { public: virtual ~Debuggable() = default; virtual void draw_debug() = 0; - bool debug; + bool debug = false; }; } \ No newline at end of file