Skip to content

Commit

Permalink
decreate threshold for opening developer console
Browse files Browse the repository at this point in the history
  • Loading branch information
evanbowman committed Jan 2, 2021
1 parent f160e2a commit 065635e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/state/pauseScreenState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ PauseScreenState::update(Platform& pfrm, Game& game, Microseconds delta)
cursor_loc_ = 0;
return state_pool().create<ActiveState>();
} else if (pfrm.keyboard().down_transition<Key::alt_1>()) {
if (++developer_mode_activation_counter_ == 15) {
if (++developer_mode_activation_counter_ == 7) {
erase_cursor(pfrm);
texts_.clear();
strs_.clear();
Expand Down

0 comments on commit 065635e

Please sign in to comment.