diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2021-03-28 12:32:17 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2021-03-28 13:00:46 +0100 |
commit | fd30c36985c6a5de09daf897800c36acb8c2c49a (patch) | |
tree | 31119051e0aa93211ea6cb81e6192a2e4afd41ea /editor/editor_run_native.cpp | |
parent | f8442b97bf7f2b445b0aca9c02629277c11064d6 (diff) | |
download | redot-engine-fd30c36985c6a5de09daf897800c36acb8c2c49a.tar.gz |
Rename Texture.get_data() to get_image()
Diffstat (limited to 'editor/editor_run_native.cpp')
-rw-r--r-- | editor/editor_run_native.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_run_native.cpp b/editor/editor_run_native.cpp index 9b92134368..1ffa20d1ea 100644 --- a/editor/editor_run_native.cpp +++ b/editor/editor_run_native.cpp @@ -43,7 +43,7 @@ void EditorRunNative::_notification(int p_what) { } Ref<ImageTexture> icon = eep->get_run_icon(); if (!icon.is_null()) { - Ref<Image> im = icon->get_data(); + Ref<Image> im = icon->get_image(); im = im->duplicate(); im->clear_mipmaps(); if (!im->is_empty()) { |