Difference for main/inferno.c from version 1.5 to 1.6


version 1.5 version 1.6
Line 18
 
Line 18
  * main() for Inferno     * main() for Inferno 
  *   *
  * $Log$   * $Log$
    * Revision 1.6  1999/08/31 07:47:03  donut
    * added user configurable number of hud message lines (and moved some defines to hudmsg.h to remove redundancy in gauges.c)
    *
  * Revision 1.5  1999/08/14 15:49:51  donut   * Revision 1.5  1999/08/14 15:49:51  donut
  * moved MENU_SCREEN_MODE to main/screens.h so that it can be used for the startup screen mode in inferno.c   * moved MENU_SCREEN_MODE to main/screens.h so that it can be used for the startup screen mode in inferno.c
  *   *
Line 924
 
Line 927
         printf( "  -hudlogdir <d>  %s\n", "Log hud messages in directory <d>");          printf( "  -hudlogdir <d>  %s\n", "Log hud messages in directory <d>");
         printf( "  -hudlogstdout   %s\n", "Log hud messages to stdout");          printf( "  -hudlogstdout   %s\n", "Log hud messages to stdout");
 //end edit -MM  //end edit -MM
    printf( "  -hudlines <l>   %s\n", "Number of hud messages to show");
         printf( "  -nobans         %s\n", "Don't use saved bans");          printf( "  -nobans         %s\n", "Don't use saved bans");
         printf( "  -savebans       %s\n", "Automatically save new bans");          printf( "  -savebans       %s\n", "Automatically save new bans");
         printf( "  -pingstats      %s\n", "Show pingstats on hud");          printf( "  -pingstats      %s\n", "Show pingstats on hud");
Line 1037
 
Line 1041
           ping_stats_on = 1;            ping_stats_on = 1;
         #endif          #endif
   
    if ((t=FindArg("-hudlines"))){
    t=atoi(Args[t+1]);
    if(t>0 && t<=HUD_MAX_NUM)
                   HUD_max_num_disp = t;
    }
   
         //added/edited on 11/01/98 by Matt Mueller          //added/edited on 11/01/98 by Matt Mueller
  //added on 10/04/98 by Matt Mueller to allow hud message logging   //added on 10/04/98 by Matt Mueller to allow hud message logging

Legend:
line(s) removed in v.1.5 
line(s) changed
 line(s) added in v.1.6