Hotkey Updates (by Buggler)

- Duplicate all applicable arrow hotkeys to WASD hotkeys in Laptop mode (w -> UP, a -> LEFT, s -> DOWN, d -> RIGHT)
- Remapped squad 14 to 'Ctrl + 4' in tactical screen

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@6674 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Wanne
2013-12-02 20:14:14 +00:00
parent b2dbc3123b
commit c8f4108225
6 changed files with 26 additions and 0 deletions
+8
View File
@@ -5108,6 +5108,7 @@ void HandleAimMemberKeyBoardInput()
switch (InputEvent.usParam)
{
case LEFTARROW:
case 'a':
// previous button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);
@@ -5129,6 +5130,7 @@ void HandleAimMemberKeyBoardInput()
gfRedrawScreen = TRUE;
break;
case RIGHTARROW:
case 'd':
// next button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);
@@ -5150,6 +5152,7 @@ void HandleAimMemberKeyBoardInput()
gfRedrawScreen = TRUE;
break;
case SHIFT_LEFTARROW:
case 'A':
// previous button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);
@@ -5171,6 +5174,7 @@ void HandleAimMemberKeyBoardInput()
gfRedrawScreen = TRUE;
break;
case SHIFT_RIGHTARROW:
case 'D':
// next button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);
@@ -5357,6 +5361,7 @@ void HandleAimMemberKeyBoardInput()
switch( InputEvent.usParam )
{
case LEFTARROW:
case 'a':
// previous button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);
@@ -5373,6 +5378,7 @@ void HandleAimMemberKeyBoardInput()
gfRedrawScreen = TRUE;
break;
case RIGHTARROW:
case 'd':
// next button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);
@@ -5389,6 +5395,7 @@ void HandleAimMemberKeyBoardInput()
gfRedrawScreen = TRUE;
break;
case SHIFT_LEFTARROW:
case 'A':
// previous button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);
@@ -5405,6 +5412,7 @@ void HandleAimMemberKeyBoardInput()
gfRedrawScreen = TRUE;
break;
case SHIFT_RIGHTARROW:
case 'D':
// next button
InitCreateDeleteAimPopUpBox(AIM_POPUP_DELETE, NULL, NULL, 0, 0, 0);