mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +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()
|
protected boolean handleBackPressed()
|
||||||
{
|
{
|
||||||
boolean consumed = false;
|
boolean consumed = false;
|
||||||
if ( ! isFinishing() ) {
|
if ( ! isFinishing() && null != m_gi ) {
|
||||||
if ( m_isNewGame ) {
|
if ( m_isNewGame ) {
|
||||||
deleteGame();
|
deleteGame();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue