Fixing other places for auto-mashing
This commit is contained in:
parent
629a38aff7
commit
7c580aa109
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue