| version 1.24 | | version 1.25 |
|---|
| | |
| * 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 |
| * | | * |
| | |
| | | |
| //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" ))) |
| | |
| //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 |
| | | |