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