added default case to switch case statement to fix warnings with gcc and xcode

This commit is contained in:
Jon Daniel 2005-01-23 01:13:23 +00:00
parent a39ade36c9
commit 055fb32794

View file

@ -383,6 +383,8 @@ void play_multiplayer_client(display& disp, game_data& units_data, config& cfg,
status = 1;
break;
}
default:
break;
}
}