Merge pull request #97063 from rcadena/d97062-unexpected-debugger-line
Some checks are pending
🔗 GHA / 📊 Static checks (push) Waiting to run
🔗 GHA / 🤖 Android (push) Blocked by required conditions
🔗 GHA / 🍏 iOS (push) Blocked by required conditions
🔗 GHA / 🐧 Linux (push) Blocked by required conditions
🔗 GHA / 🍎 macOS (push) Blocked by required conditions
🔗 GHA / 🏁 Windows (push) Blocked by required conditions
🔗 GHA / 🌐 Web (push) Blocked by required conditions
🔗 GHA / 🪲 Godot CPP (push) Blocked by required conditions

Remove debug print from Android `DisplayServer.screen_get_scale` implementation
This commit is contained in:
Rémi Verschelde 2024-09-16 13:36:09 +02:00
commit 6daa6a8513
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -258,7 +258,6 @@ float DisplayServerAndroid::screen_get_scale(int p_screen) const {
screen_scale = MIN(screen_scale, MIN(width_scale, height_scale));
}
print_line("Selected screen scale: ", screen_scale);
return screen_scale;
}