diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-27 10:06:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 10:06:12 +0200 |
commit | 839590302f7ea80164c45428b53024e008092547 (patch) | |
tree | a5d001cd603ed9fb3dfcd5525500c0572ed53f4a /modules/mono/editor | |
parent | 9650531bc588dd7330aca0003dea77113dbd29a3 (diff) | |
parent | 92ead83913e1280ebb89df12e1dfb2f8737b0f3e (diff) |
Merge pull request #31700 from akien-mga/mono-osx-fix-build
Mono: Fix OSX build due to invalid function call
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/editor_internal_calls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/editor_internal_calls.cpp b/modules/mono/editor/editor_internal_calls.cpp index 7db1090e2a..cd1ca2a2c7 100644 --- a/modules/mono/editor/editor_internal_calls.cpp +++ b/modules/mono/editor/editor_internal_calls.cpp @@ -271,7 +271,7 @@ MonoString *godot_icall_Internal_SimplifyGodotPath(MonoString *p_path) { MonoBoolean godot_icall_Internal_IsOsxAppBundleInstalled(MonoString *p_bundle_id) { #ifdef OSX_ENABLED String bundle_id = GDMonoMarshal::mono_string_to_godot(p_bundle_id); - return (MonoBoolean)osx_is_app_bundle_installed; + return (MonoBoolean)osx_is_app_bundle_installed(bundle_id); #else (void)p_bundle_id; // UNUSED return (MonoBoolean) false; |