Skip to content

Commit

Permalink
fix: Made clicking on back arrow work as intended in Key Config
Browse files Browse the repository at this point in the history
  • Loading branch information
Tetro48 committed Jun 11, 2024
1 parent a0ce53e commit 4ec5eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/key_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ function KeyConfigScene:onInputPress(e)
end
elseif e.type == "mouse" then
if self.configurable_inputs == nil then
if cursorHoverArea(20, 40, 50, 30) and not self.reconfiguration then
if cursorHoverArea(20, 40, 50, 30) and self.reconfiguration then
playSE("menu_cancel")
scene = InputConfigScene()
end
Expand Down

0 comments on commit 4ec5eb7

Please sign in to comment.