Style: Apply fixes from clang-format 18.1.3

This commit is contained in:
Rémi Verschelde 2025-04-25 15:07:01 +02:00
parent 9a8b5848d8
commit 2fea5c0a66
No known key found for this signature in database
GPG key ID: C3336907360768E1
47 changed files with 237 additions and 243 deletions

View file

@ -379,7 +379,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";
}
}