Archived
1
Fork 0

Disable Linux and Windows debug menu by default

This commit is contained in:
redstrate 2021-05-11 16:04:24 -04:00
parent 3e0f294d0c
commit cbb731f68c

View file

@ -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;