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
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
@fade_out = true
end

View file

@ -233,7 +233,7 @@ class Doc_Message
end
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
@fade_out = true
end

View file

@ -181,7 +181,7 @@ class Ed_Message
end
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
@fade_out_text = true
end