diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2019-11-29 08:54:39 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2019-12-01 21:57:18 +0200 |
commit | 2ef8c5fac5db208e8b2220f67c666cb0934c9020 (patch) | |
tree | 31f4d2f8765f86ad8b870030eba044eaec206019 /platform/uwp/os_uwp.cpp | |
parent | 52e3993eb0bc98b94c6d65e6901c38daae73b7fa (diff) |
iOS modular build and export implementation.
Diffstat (limited to 'platform/uwp/os_uwp.cpp')
-rw-r--r-- | platform/uwp/os_uwp.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp index 60f2290355..eb0ae96111 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -303,9 +303,6 @@ Error OS_UWP::initialize(const VideoMode &p_desired, int p_video_driver, int p_a visual_server->init(); - ///@TODO implement a subclass for UWP and instantiate that instead - camera_server = memnew(CameraServer); - input = memnew(InputDefault); joypad = ref new JoypadUWP(input); @@ -404,8 +401,6 @@ void OS_UWP::finalize() { memdelete(input); - memdelete(camera_server); - joypad = nullptr; } |