diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-08-08 14:48:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-08 14:48:10 +0200 |
commit | 51d8206ee8ce509db7cfe2e9ac1cd93be877eeff (patch) | |
tree | 878374ababe2299c963788fa354e097579eb9f3f /platform/javascript/os_javascript.cpp | |
parent | 144226af51bf57f960e8c3e5415c8017dae3a176 (diff) | |
parent | 2286037bc33c1b74e93d2b4e9fff56d81ad93b01 (diff) |
Merge pull request #10169 from toger5/deprecated_curser_fuction_call
removed calls to cursor_set_visible on all platforms fixes #10167
Diffstat (limited to 'platform/javascript/os_javascript.cpp')
-rw-r--r-- | platform/javascript/os_javascript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/os_javascript.cpp b/platform/javascript/os_javascript.cpp index 5513fca809..d339baf024 100644 --- a/platform/javascript/os_javascript.cpp +++ b/platform/javascript/os_javascript.cpp @@ -476,7 +476,7 @@ void OS_JavaScript::initialize(const VideoMode &p_desired, int p_video_driver, i print_line("Init VS"); visual_server = memnew(VisualServerRaster()); - visual_server->cursor_set_visible(false, 0); + // visual_server->cursor_set_visible(false, 0); print_line("Init Physicsserver"); |