diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-01 22:35:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-01 22:35:45 +0100 |
commit | e64a663c59141f972345852f0bce613e3f13dd3a (patch) | |
tree | af7b393e1665cba18d373eb67b257f005fbb197b /platform/x11/os_x11.cpp | |
parent | d2858e23713314f286875c45b6bd176daf860171 (diff) | |
parent | 2ef8c5fac5db208e8b2220f67c666cb0934c9020 (diff) |
Merge pull request #33992 from bruvzg/ios_modular_build
iOS modular build and export implementation.
Diffstat (limited to 'platform/x11/os_x11.cpp')
-rw-r--r-- | platform/x11/os_x11.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index 54d3759cc5..39d5c0e84e 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -596,9 +596,6 @@ Error OS_X11::initialize(const VideoMode &p_desired, int p_video_driver, int p_a AudioDriverManager::initialize(p_audio_driver); - ///@TODO implement a subclass for Linux and instantiate that instead - camera_server = memnew(CameraServer); - input = memnew(InputDefault); window_has_focus = true; // Set focus to true at init @@ -832,8 +829,6 @@ void OS_X11::finalize() { memdelete(input); - memdelete(camera_server); - cursors_cache.clear(); visual_server->finish(); memdelete(visual_server); |