mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
don't complain about empty room name for standalone game
This commit is contained in:
parent
57838c0436
commit
2c95179050
1 changed files with 3 additions and 3 deletions
|
@ -874,10 +874,10 @@ public class GameConfig extends XWActivity
|
||||||
|
|
||||||
private void launchGame()
|
private void launchGame()
|
||||||
{
|
{
|
||||||
if ( m_car.ip_relay_invite.length() == 0 ) {
|
if ( m_notNetworkedGame || m_car.ip_relay_invite.length() > 0 ) {
|
||||||
showOKOnlyDialog( R.string.no_empty_rooms );
|
|
||||||
} else {
|
|
||||||
GameUtils.launchGame( this, m_path );
|
GameUtils.launchGame( this, m_path );
|
||||||
|
} else {
|
||||||
|
showOKOnlyDialog( R.string.no_empty_rooms );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue