(svn r623) -Feature: [ 1066504 ] Pause key pauses the game

This commit is contained in:
tron
2004-11-15 10:04:57 +00:00
parent 95a3e4fe1f
commit 01e88bb61d
4 changed files with 7 additions and 1 deletions

View File

@@ -1681,7 +1681,10 @@ static void MainToolbarWndProc(Window *w, WindowEvent *e)
if (local == 0xff) local = 0; // spectator
switch(e->keypress.keycode) {
case WKC_F1: ToolbarPauseClick(w); break;
case WKC_F1:
case WKC_PAUSE:
ToolbarPauseClick(w);
break;
case WKC_F2: ShowGameOptions(); break;
case WKC_F3: MenuClickSaveLoad(0); break;
case WKC_F4: ShowSmallMap(); break;