mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
word around some race condition to avoid crash
Reported by Play Store user; can't reproduce but this should fix it.
This commit is contained in:
parent
1969b1137e
commit
8fb21002ad
1 changed files with 1 additions and 1 deletions
|
@ -865,7 +865,7 @@ public class GameConfigDelegate extends DelegateBase
|
|||
protected boolean handleBackPressed()
|
||||
{
|
||||
boolean consumed = false;
|
||||
if ( ! isFinishing() ) {
|
||||
if ( ! isFinishing() && null != m_gi ) {
|
||||
if ( m_isNewGame ) {
|
||||
deleteGame();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue