diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-03-12 18:53:13 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-03-12 18:53:13 +0100 |
commit | 801221d01b705103cac27e7a50e87312cedb8f18 (patch) | |
tree | 24fd1f0ccb54edf656a5dc426fa3631fb2262dd6 | |
parent | 082092267a1ee41600b6d21a42f2d0cfc63e4b3e (diff) |
Remove undefined binds
Bug introduced by 6eb4812
-rw-r--r-- | core/bind/core_bind.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index db234484dd..bf611f89c9 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -874,8 +874,6 @@ void _OS::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_borderless_window", "borderless"), &_OS::set_borderless_window); ObjectTypeDB::bind_method(_MD("get_borderless_window"), &_OS::get_borderless_window); - ObjectTypeDB::bind_method(_MD("set_multisamples", "multisamples"), &_OS::set_multisamples); - ObjectTypeDB::bind_method(_MD("get_multisamples"), &_OS::get_multisamples); ObjectTypeDB::bind_method(_MD("set_screen_orientation","orientation"),&_OS::set_screen_orientation); ObjectTypeDB::bind_method(_MD("get_screen_orientation"),&_OS::get_screen_orientation); |