Difference for main/game.c from version 1.22 to 1.23


version 1.22 version 1.23
Line 19
 
Line 19
  * Game loop for Inferno   * Game loop for Inferno
  *   *
  * $Log$   * $Log$
    * Revision 1.23  2000/10/27 03:27:43  donut
    * (shift-)alt-tab no longer unpauses game
    *
  * Revision 1.22  2000/06/20 06:55:50  donut   * Revision 1.22  2000/06/20 06:55:50  donut
  * fix (sdl) opengl infinite fullscreen toggle problem   * fix (sdl) opengl infinite fullscreen toggle problem
  *   *
Line 2469
 
Line 2472
  #endif   #endif
   
  default:   default:
    switch (key & 0xFF) {
    case KEY_LALT:case KEY_RALT:case KEY_TAB:case KEY_LSHIFT: case KEY_RSHIFT:
    break;//ignore (shift+)alt+tab while paused -MPM
    default:
  clear_boxed_message();   clear_boxed_message();
  paused=0;   paused=0;
    break;
    }
  break;   break;
   
  }   }

Legend:
line(s) removed in v.1.22 
line(s) changed
 line(s) added in v.1.23