summaryrefslogtreecommitdiff
path: root/core/bind
diff options
context:
space:
mode:
authorPoommetee Ketson <poommetee@protonmail.com>2018-03-24 00:57:58 +0700
committerPoommetee Ketson <poommetee@protonmail.com>2018-04-11 10:20:22 +0700
commit72aa87758a6c7795dc488cda45ccbd37f71de9a7 (patch)
tree5258d73a942a67d6e5a90c9ccbd9c3287af4a0ff /core/bind
parent0f6fdb77c58f6f17bcdd85b107ad30b4e04edf3f (diff)
Update classref and docs, fix missing parameters' name
Diffstat (limited to 'core/bind')
-rw-r--r--core/bind/core_bind.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp
index 20adf7ff02..a977fd3da4 100644
--- a/core/bind/core_bind.cpp
+++ b/core/bind/core_bind.cpp
@@ -1032,9 +1032,9 @@ void _OS::_bind_methods() {
//ClassDB::bind_method(D_METHOD("get_fullscreen_mode_list","screen"),&_OS::get_fullscreen_mode_list,DEFVAL(0));
ClassDB::bind_method(D_METHOD("get_video_driver_count"), &_OS::get_video_driver_count);
- ClassDB::bind_method(D_METHOD("get_video_driver_name"), &_OS::get_video_driver_name);
+ ClassDB::bind_method(D_METHOD("get_video_driver_name", "driver"), &_OS::get_video_driver_name);
ClassDB::bind_method(D_METHOD("get_audio_driver_count"), &_OS::get_audio_driver_count);
- ClassDB::bind_method(D_METHOD("get_audio_driver_name"), &_OS::get_audio_driver_name);
+ ClassDB::bind_method(D_METHOD("get_audio_driver_name", "driver"), &_OS::get_audio_driver_name);
ClassDB::bind_method(D_METHOD("get_screen_count"), &_OS::get_screen_count);
ClassDB::bind_method(D_METHOD("get_current_screen"), &_OS::get_current_screen);