Difference for main/inferno.c from version 1.24 to 1.25


version 1.24 version 1.25
Line 18
 
Line 18
  * main() for Inferno     * main() for Inferno 
  *   *
  * $Log$   * $Log$
    * Revision 1.25  2000/04/18 01:19:02  sekmu
    * Changed/fixed altsounds (mostly done)
    *
  * Revision 1.24  2000/03/06 01:42:10  donut   * Revision 1.24  2000/03/06 01:42:10  donut
  * noudp_debug and nonetwork fixes   * noudp_debug and nonetwork fixes
  *   *
Line 1126
 
Line 1129
   
 //added on 11/13/99 by Victor Rachels for new sounds  //added on 11/13/99 by Victor Rachels for new sounds
         if ((t = FindArg( "-altsounds" )))          if ((t = FindArg( "-altsounds" )))
          read_alt_soundlist(Args[t+1]);           {
              load_alt_sounds(Args[t+1]);
              atexit(free_alt_sounds);
            }
 //end this section addition - VR  //end this section addition - VR
   
  if ((t = FindArg( "-missiondir" )))   if ((t = FindArg( "-missiondir" )))
Line 1375
 
Line 1381
 //end addition -MM  //end addition -MM
    
 #ifdef NETWORK  #ifdef NETWORK
 // i = FindArg( "-rinvul" );  
 // if (i > 0) {  
 // int mins = atoi(Args[i+1]);  
 // if (mins > 314)  
 // mins = 314;  
 // control_invul_time = mins/5;  
 // }  
  control_invul_time = 0;   control_invul_time = 0;
 #endif  #endif
   

Legend:
line(s) removed in v.1.24 
line(s) changed
 line(s) added in v.1.25