Skip to content

Commit

Permalink
Revert the HUD display check to be less stringent.
Browse files Browse the repository at this point in the history
It was hiding itself unnecessarily.
  • Loading branch information
ceejbot committed Jan 23, 2024
1 parent 412e3a6 commit 40f4f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ namespace helpers
rlog::info("no control map");
return false;
}
return controlMap->AreControlsEnabled(requiredControlFlags);
// return controlMap->IsMovementControlsEnabled() && controlMap->IsActivateControlsEnabled();
// return controlMap->AreControlsEnabled(requiredControlFlags);
return controlMap->IsMovementControlsEnabled() && controlMap->IsActivateControlsEnabled();
}

bool ignoreKeyEvents()
Expand Down

0 comments on commit 40f4f2e

Please sign in to comment.