diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-03-23 20:14:12 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-03-23 20:14:12 -0300 |
commit | efaeebab4d83e5657288b7b20db6ce4ccf987a01 (patch) | |
tree | 2c748755605fe2e1bc065519df35f57b49dbf7b4 /editor/editor_run_native.h | |
parent | c37fad650f92845a6f59740fea2fea1b46f56db1 (diff) | |
download | redot-engine-efaeebab4d83e5657288b7b20db6ce4ccf987a01.tar.gz |
Several fixes to Android exporter and port.
Android seems to be working again!
Diffstat (limited to 'editor/editor_run_native.h')
-rw-r--r-- | editor/editor_run_native.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_run_native.h b/editor/editor_run_native.h index 92eaa8516b..63c3f02717 100644 --- a/editor/editor_run_native.h +++ b/editor/editor_run_native.h @@ -36,14 +36,14 @@ class EditorRunNative : public HBoxContainer { GDCLASS(EditorRunNative, BoxContainer); - Map<StringName, MenuButton *> menus; + Map<int, MenuButton *> menus; bool first; bool deploy_dumb; bool deploy_debug_remote; bool debug_collisions; bool debug_navigation; - void _run_native(int p_idx, const String &p_platform); + void _run_native(int p_idx, int p_platform); protected: static void _bind_methods(); |