Difference for main/game.c from version 1.17 to 1.18


version 1.17 version 1.18
Line 19
 
Line 19
  * Game loop for Inferno   * Game loop for Inferno
  *   *
  * $Log$   * $Log$
    * Revision 1.18  1999/11/25 09:48:48  sekmu
    * observer mode fixes (broadcast,radar)
    *
  * Revision 1.17  1999/11/21 14:05:00  sekmu   * Revision 1.17  1999/11/21 14:05:00  sekmu
  * observer mode   * observer mode
  *   *
Line 2760
 
Line 2763
          if(I_am_observer)           if(I_am_observer)
           {            {
             Physics_cheat_flag = 0xBADA55;              Physics_cheat_flag = 0xBADA55;
             multi_send_observerghost();              multi_send_observerghost(100);
           }            }
         #endif          #endif
 //end this section addition - VR  //end this section addition - VR
Line 3660
 
Line 3663
                                 case KEY_F3:                            toggle_cockpit();       break;                                  case KEY_F3:                            toggle_cockpit();       break;
   
 //added on 9/17/98 by Victor Rachels for Radar Toggle  //added on 9/17/98 by Victor Rachels for Radar Toggle
                                 case KEY_SHIFTED+KEY_F3: if(!(Game_mode & GM_MULTI)||Network_allow_radar)  //added/edited on 11/24/99 by Victor Rachels to allow radar for observers
                                   case KEY_SHIFTED+KEY_F3: if(!(Game_mode & GM_MULTI)||Network_allow_radar||I_am_observer)
                                                           show_radar = !show_radar; break;                                                            show_radar = !show_radar; break;
 //end this section addition  //end this section edit - VR
   //end this section addition - VR
                                 case KEY_SHIFTED+KEY_F5:                                  case KEY_SHIFTED+KEY_F5:
                                                 if (Newdemo_state == ND_STATE_RECORDING)                                                  if (Newdemo_state == ND_STATE_RECORDING)
                                                  {                                                   {

Legend:
line(s) removed in v.1.17 
line(s) changed
 line(s) added in v.1.18