Merge pull request #87597 from zaevi/fix_csharp_aot_initialization

C#: Fix not assigning `runtime_initialized` when initializing with AOT.
This commit is contained in:
Rémi Verschelde 2024-01-26 11:49:53 +01:00
commit 99ac3d332a
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 0 deletions

View File

@ -395,6 +395,7 @@ void GDMono::initialize() {
if (godot_plugins_initialize != nullptr) {
is_native_aot = true;
runtime_initialized = true;
} else {
ERR_FAIL_MSG(".NET: Failed to load hostfxr");
}