diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-29 13:54:38 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-29 13:54:38 +0100 |
commit | 7434f8b4e3af0014ed55f4f2058c2e31a53305bf (patch) | |
tree | fb56262283361557eafee2a2592a3765b702cd2f /platform/android/export/export_plugin.cpp | |
parent | 9101067666525ff97b0b63f96c001bd413587ba2 (diff) | |
parent | 3a08c646ee1e9884a020a3f7ff10c6c9d28b60ba (diff) | |
download | redot-engine-7434f8b4e3af0014ed55f4f2058c2e31a53305bf.tar.gz |
Merge pull request #88959 from akien-mga/pre-commit-clang-17.0.6-black-24.2.0
Pre-commit: Update to clang-format 17.0.6 and black 24.2.0
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index 53182b8e2d..db0352db01 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -387,7 +387,7 @@ void EditorExportPlatformAndroid::_check_for_changes_poll_thread(void *ud) { d.description += "Chipset: " + p.get_slice("=", 1).strip_edges() + "\n"; } else if (p.begins_with("ro.opengles.version=")) { uint32_t opengl = p.get_slice("=", 1).to_int(); - d.description += "OpenGL: " + itos(opengl >> 16) + "." + itos((opengl >> 8) & 0xFF) + "." + itos((opengl)&0xFF) + "\n"; + d.description += "OpenGL: " + itos(opengl >> 16) + "." + itos((opengl >> 8) & 0xFF) + "." + itos((opengl) & 0xFF) + "\n"; } } |