Disable Linux and Windows debug menu by default
This commit is contained in:
parent
3e0f294d0c
commit
cbb731f68c
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue