ANDROID: Remove duplicate _system->quit() from JNI::Destroy()

Since it is already called in Jni::main after scummvm_main() returns. The second call in destroy caused crashes on some devices.
This commit is contained in:
Thanasis Antoniou 2019-09-23 20:51:44 +03:00
parent d39eca7e39
commit b4b9ad1743

View file

@ -562,7 +562,6 @@ void JNI::destroy(JNIEnv *env, jobject self) {
delete _asset_archive;
_asset_archive = 0;
_system->quit();
delete _system;
g_system = 0;
_system = 0;