diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-25 14:08:17 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-25 14:08:17 +0100 |
commit | d76806d322c4618f703347751f36feb35ef2d9f2 (patch) | |
tree | 787848c9d1d78fc47a9a6cffe1de148c329e84e4 /modules/mono/config.py | |
parent | 8c713fa9bf1084ddb9b48802b61f9818d57a622e (diff) |
Core: Always enable ptrcall, remove PTRCALL_ENABLED define
ptrcall is now also used to optimize calls in GDScript, on top of the existing
use by the GDNative and Mono modules.
It no longer makes sense to make it optional.
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index d060ae9b28..c4a6b408e6 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -11,7 +11,6 @@ def configure(env): if platform not in supported_platforms: raise RuntimeError("This module does not currently support building for this platform") - env.use_ptrcall = True env.add_module_version_string("mono") from SCons.Script import BoolVariable, PathVariable, Variables, Help |