mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Minor clarification for Y/N shortcuts.
This commit is contained in:
@@ -484,7 +484,7 @@ public class MatchScreen extends FScreen {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
break;
|
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()) {
|
if (KeyInputAdapter.isCtrlKeyDown() || GuiBase.getInterface().isRunningOnDesktop()) {
|
||||||
final IGuiGame gui = MatchController.instance;
|
final IGuiGame gui = MatchController.instance;
|
||||||
final IGameController controller = MatchController.instance.getGameController();
|
final IGameController controller = MatchController.instance.getGameController();
|
||||||
@@ -515,7 +515,7 @@ public class MatchScreen extends FScreen {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
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()) {
|
if (KeyInputAdapter.isCtrlKeyDown() || GuiBase.getInterface().isRunningOnDesktop()) {
|
||||||
final IGuiGame gui = MatchController.instance;
|
final IGuiGame gui = MatchController.instance;
|
||||||
final IGameController controller = MatchController.instance.getGameController();
|
final IGameController controller = MatchController.instance.getGameController();
|
||||||
|
|||||||
Reference in New Issue
Block a user