Fix crash on GDNative API json generator exit.
(cherry picked from commit a4423c82f8
)
This commit is contained in:
parent
a86f5462cf
commit
575433b997
1 changed files with 3 additions and 0 deletions
|
@ -39,6 +39,8 @@
|
||||||
#include "core/os/os.h"
|
#include "core/os/os.h"
|
||||||
#include "core/project_settings.h"
|
#include "core/project_settings.h"
|
||||||
|
|
||||||
|
#include "main/main.h"
|
||||||
|
|
||||||
#include "scene/main/scene_tree.h"
|
#include "scene/main/scene_tree.h"
|
||||||
#include "scene/resources/resource_format_text.h"
|
#include "scene/resources/resource_format_text.h"
|
||||||
|
|
||||||
|
@ -1055,6 +1057,7 @@ void NativeScriptLanguage::init() {
|
||||||
if (generate_c_api(E->next()->get()) != OK) {
|
if (generate_c_api(E->next()->get()) != OK) {
|
||||||
ERR_PRINT("Failed to generate C API\n");
|
ERR_PRINT("Failed to generate C API\n");
|
||||||
}
|
}
|
||||||
|
Main::cleanup(true);
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue