Merge pull request #14764 from poke1024/android

Increase sleep time for android export thread
This commit is contained in:
Rémi Verschelde 2017-12-17 14:18:47 +01:00 committed by GitHub
commit fc0e341fc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -352,10 +352,11 @@ class EditorExportAndroid : public EditorExportPlatform {
ea->device_lock->unlock();
}
uint64_t sleep = OS::get_singleton()->get_power_state() == OS::POWERSTATE_ON_BATTERY ? 1000 : 100;
uint64_t wait = 3000000;
uint64_t time = OS::get_singleton()->get_ticks_usec();
while (OS::get_singleton()->get_ticks_usec() - time < wait) {
OS::get_singleton()->delay_usec(1000);
OS::get_singleton()->delay_usec(1000 * sleep);
if (ea->quit_request)
break;
}