Difference for main/menu.c from version 1.12 to 1.13


version 1.12 version 1.13
Line 132
 
Line 132
 #define MENU_START_SERIAL       18  #define MENU_START_SERIAL       18
 #define MENU_HELP               19  #define MENU_HELP               19
 #define MENU_NEW_PLAYER         20  #define MENU_NEW_PLAYER         20
   #ifdef NETWORK
 #define MENU_MULTIPLAYER        21  #define MENU_MULTIPLAYER        21
   #endif
 #define MENU_STOP_MODEM         22  #define MENU_STOP_MODEM         22
 #define MENU_SHOW_CREDITS       23  #define MENU_SHOW_CREDITS       23
 #define MENU_ORDER_INFO         24  #define MENU_ORDER_INFO         24
 #define MENU_PLAY_SONG          25  #define MENU_PLAY_SONG          25
   #ifdef NETWORK
 #define MENU_IPX_MULTIPLAYER    26  #define MENU_IPX_MULTIPLAYER    26
 #define MENU_KALI_MULTIPLAYER   27  #define MENU_KALI_MULTIPLAYER   27
 #define MENU_IP_MULTIPLAYER     28  #define MENU_IP_MULTIPLAYER     28
 #define MENU_IP_SERV_CONNECT    29  #define MENU_IP_SERV_CONNECT    29
 #define MENU_MANUAL_IP_JOIN     30  #define MENU_MANUAL_IP_JOIN     30
   #endif
   
 //ADD_ITEM("Start netgame...", MENU_START_NETGAME, -1 );  //ADD_ITEM("Start netgame...", MENU_START_NETGAME, -1 );
 //ADD_ITEM("Send net message...", MENU_SEND_NET_MESSAGE, -1 );  //ADD_ITEM("Send net message...", MENU_SEND_NET_MESSAGE, -1 );
Line 231
 
Line 235
   
   ADD_ITEM(TXT_LOAD_GAME,MENU_LOAD_GAME,KEY_L);    ADD_ITEM(TXT_LOAD_GAME,MENU_LOAD_GAME,KEY_L);
   
   #ifdef NETWORK
  ADD_ITEM(TXT_MULTIPLAYER_,MENU_MULTIPLAYER,-1);   ADD_ITEM(TXT_MULTIPLAYER_,MENU_MULTIPLAYER,-1);
   #endif
   
  ADD_ITEM(TXT_OPTIONS_, MENU_CONFIG, -1 );   ADD_ITEM(TXT_OPTIONS_, MENU_CONFIG, -1 );
  ADD_ITEM(TXT_CHANGE_PILOTS,MENU_NEW_PLAYER,unused);   ADD_ITEM(TXT_CHANGE_PILOTS,MENU_NEW_PLAYER,unused);
Line 429
 
Line 435
  network_join_game();   network_join_game();
 #endif  #endif
  break;   break;
   #ifdef NETWORK
  case MENU_IPX_MULTIPLAYER:   case MENU_IPX_MULTIPLAYER:
  do_ipx_multi_player_menu();   do_ipx_multi_player_menu();
  break;   break;
Line 447
 
Line 454
  break;   break;
 #endif  #endif
  case MENU_START_SERIAL:   case MENU_START_SERIAL:
  #ifdef NETWORK  
  com_main_menu();   com_main_menu();
  #endif  
  break;   break;
  case MENU_MULTIPLAYER:   case MENU_MULTIPLAYER:
  do_multi_player_menu();   do_multi_player_menu();
  break;   break;
   #endif //NETWORK
  case MENU_CONFIG:   case MENU_CONFIG:
  do_options_menu();   do_options_menu();
  break;   break;
Line 1254
 
Line 1260
   
         write_player_file();          write_player_file();
 }  }
   #ifdef NETWORK
 void do_multi_player_menu()  void do_multi_player_menu()
 {  {
  int menu_choice[4];   int menu_choice[4];
Line 1427
 
Line 1433
  } while( choice > -1 );   } while( choice > -1 );
   
 }  }
   #endif //NETWORK
 #endif  #endif

Legend:
line(s) removed in v.1.12 
line(s) changed
 line(s) added in v.1.13