diff --git a/forge-gui-mobile/src/forge/screens/match/MatchScreen.java b/forge-gui-mobile/src/forge/screens/match/MatchScreen.java index d5187637f59..03f59e784ed 100644 --- a/forge-gui-mobile/src/forge/screens/match/MatchScreen.java +++ b/forge-gui-mobile/src/forge/screens/match/MatchScreen.java @@ -484,7 +484,7 @@ public class MatchScreen extends FScreen { return true; } break; - case Keys.Y: //auto-yield, always yes + case Keys.Y: //auto-yield, always yes, Ctrl+Y on Android, Y when running on desktop if (KeyInputAdapter.isCtrlKeyDown() || GuiBase.getInterface().isRunningOnDesktop()) { final IGuiGame gui = MatchController.instance; final IGameController controller = MatchController.instance.getGameController(); @@ -515,7 +515,7 @@ public class MatchScreen extends FScreen { } } break; - case Keys.N: //auto-yield, always no + case Keys.N: //auto-yield, always no, Ctrl+N on Android, N when running on desktop if (KeyInputAdapter.isCtrlKeyDown() || GuiBase.getInterface().isRunningOnDesktop()) { final IGuiGame gui = MatchController.instance; final IGameController controller = MatchController.instance.getGameController();