Merge pull request #67 from rdatta95/fix-getting-gameSolved-value
Getting correct value of "gameSolved" key (Partial fix for Issue #37)
This commit is contained in:
commit
444fa1914a
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ public class GameActivity extends BaseActivity implements NavigationView.OnNavig
|
|||
finish();
|
||||
overridePendingTransition(0, 0);
|
||||
}
|
||||
gameSolved = savedInstanceState.getInt("gameSolved") == 1;
|
||||
gameSolved = savedInstanceState.getBoolean("gameSolved");
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue