1
1
forked from 0ad/0ad

The chat hotkey (goes with previous commit)

This was SVN commit r7910.
This commit is contained in:
WhiteTreePaladin 2010-08-11 22:17:54 +00:00
parent 4cfca1625d
commit 0c4a64ce4c
2 changed files with 5 additions and 1 deletions

View File

@ -145,7 +145,9 @@ static SHotkeyInfo hotkeyInfo[] =
{ HOTKEY_PLAYMUSIC, "playmusic", SDLK_p, 0 },
{ HOTKEY_PAUSE, "pause", SDLK_PAUSE, 0 },
{ HOTKEY_SPEED_INCREASE, "speed.increase", 0, 0 },
{ HOTKEY_SPEED_DECREASE, "speed.decrease", 0, 0 }
{ HOTKEY_SPEED_DECREASE, "speed.decrease", 0, 0 },
{ HOTKEY_KILL, "killUnit", 0, 0 },
{ HOTKEY_CHAT, "chat", 0, 0 }
};
/* SDL-type ends */

View File

@ -127,6 +127,8 @@ enum
HOTKEY_PAUSE,
HOTKEY_SPEED_INCREASE,
HOTKEY_SPEED_DECREASE,
HOTKEY_KILL,
HOTKEY_CHAT,
HOTKEY_LAST,