diff options
author | George Marques <george@gmarqu.es> | 2018-01-01 13:59:13 -0200 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2018-01-01 13:59:14 -0200 |
commit | 2a023a425dd73ee476aa78fc6a544ea3bfbc010b (patch) | |
tree | 64cdf68eeaf3816f60923addf43d23f5e30d167c /modules/gdnative/gdnative_library_editor_plugin.cpp | |
parent | abf416f922cb47b32ddc391eb58f1a8572579665 (diff) | |
download | redot-engine-2a023a425dd73ee476aa78fc6a544ea3bfbc010b.tar.gz |
Make GDNative DLLs work on UWP
Diffstat (limited to 'modules/gdnative/gdnative_library_editor_plugin.cpp')
-rw-r--r-- | modules/gdnative/gdnative_library_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/gdnative_library_editor_plugin.cpp b/modules/gdnative/gdnative_library_editor_plugin.cpp index 1e638ab702..22fb058851 100644 --- a/modules/gdnative/gdnative_library_editor_plugin.cpp +++ b/modules/gdnative/gdnative_library_editor_plugin.cpp @@ -299,8 +299,8 @@ GDNativeLibraryEditor::GDNativeLibraryEditor() { NativePlatformConfig platform_uwp; platform_uwp.name = "Windows Universal"; platform_uwp.entries.push_back("arm"); - platform_uwp.entries.push_back("x86"); - platform_uwp.entries.push_back("x64"); + platform_uwp.entries.push_back("32"); + platform_uwp.entries.push_back("64"); platform_uwp.library_extension = "*.dll"; platforms["UWP"] = platform_uwp; |