Fixing other places for auto-mashing

This commit is contained in:
mshirt 2019-07-02 01:45:16 -07:00
parent 629a38aff7
commit 7c580aa109
3 changed files with 3 additions and 3 deletions

View File

@ -178,7 +178,7 @@ class Desktop_Message
end end
if visible if visible
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
terminate_message terminate_message
@fade_out = true @fade_out = true
end end

View File

@ -233,7 +233,7 @@ class Doc_Message
end end
if visible if visible
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
terminate_message terminate_message
@fade_out = true @fade_out = true
end end

View File

@ -181,7 +181,7 @@ class Ed_Message
end end
if visible if visible
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
terminate_message terminate_message
@fade_out_text = true @fade_out_text = true
end end