Permalink
6 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Revert "Fix erronous toast when performing a game restart."
This reverts commit 42391b8.
- Loading branch information
Gillou68310
committed
Nov 4, 2015
1 parent
f3e08fe
commit 6588405
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6588405
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fzurita this is causing the autosave to not being loaded and also leads to a crash when exiting. Reverting it for the moment.
6588405
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, moving the location of the toast message is causing those issues? I wonder if the callback is happening in another thread.
6588405
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My auto saves are still being loaded correctly when choosing the resume option. Under what circumstances are auto saves not loading correctly?
6588405
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just starting the app and resuming a game will produce the issue for me
Propably a race condition on my particular device.
6588405
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, sounds that way. I really doubt that the toast message is the root cause. It sounds like we need to synchronize something. I think moving the toast until after the save is loaded will probably fix it for you since that will restore the old timing. It's not a good fix though.
6588405
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess you're right, I always hated those toast btw :-P