From cbb731f68cd443c7468bc6268275e328f73d60db Mon Sep 17 00:00:00 2001 From: redstrate <54911369+redstrate@users.noreply.github.com> Date: Tue, 11 May 2021 16:04:24 -0400 Subject: [PATCH] Disable Linux and Windows debug menu by default --- engine/core/include/engine.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/core/include/engine.hpp b/engine/core/include/engine.hpp index 8eb0716..e90e1b9 100755 --- a/engine/core/include/engine.hpp +++ b/engine/core/include/engine.hpp @@ -321,7 +321,8 @@ namespace prism { /// If physics should upate. This is a control indepentent of the pause state. bool update_physics = true; -#if defined(PLATFORM_TVOS) || defined(PLATFORM_IOS) || defined(PLATFORM_WINDOWS) || defined(PLATFORM_LINUX) + // we enable the debug menu by default on tvOS and iOS since there's no easily accessible keybind +#if defined(PLATFORM_TVOS) || defined(PLATFORM_IOS) bool debug_enabled = true; #else bool debug_enabled = false;