mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove isFinishing check in onDestroy - not relevant.
This commit is contained in:
parent
2291855a1f
commit
2b0bbb1e0c
1 changed files with 1 additions and 1 deletions
|
@ -785,7 +785,7 @@ public abstract class NativeActivity extends Activity {
|
|||
// TODO: Can we ensure that the GL thread has stopped rendering here?
|
||||
// I've seen crashes that seem to indicate that sometimes it hasn't...
|
||||
NativeApp.audioShutdown();
|
||||
if (shuttingDown || isFinishing()) {
|
||||
if (shuttingDown) {
|
||||
NativeApp.shutdown();
|
||||
unregisterCallbacks();
|
||||
initialized = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue