don't complain about empty room name for standalone game

This commit is contained in:
Andy2 2010-11-07 11:50:01 -08:00
parent 57838c0436
commit 2c95179050

View file

@ -874,10 +874,10 @@ public class GameConfig extends XWActivity
private void launchGame()
{
if ( m_car.ip_relay_invite.length() == 0 ) {
showOKOnlyDialog( R.string.no_empty_rooms );
} else {
if ( m_notNetworkedGame || m_car.ip_relay_invite.length() > 0 ) {
GameUtils.launchGame( this, m_path );
} else {
showOKOnlyDialog( R.string.no_empty_rooms );
}
}