1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix various typos with codespell

Using 2.2.6.dev193+g907e5380.
This commit is contained in:
Rémi Verschelde
2023-09-18 09:53:39 +02:00
parent 4df80b0e62
commit 3e233e1f24
4 changed files with 5 additions and 5 deletions

View File

@@ -2921,8 +2921,8 @@ bool OpenXRAPI::is_environment_blend_mode_supported(XrEnvironmentBlendMode p_ble
}
bool OpenXRAPI::set_environment_blend_mode(XrEnvironmentBlendMode p_blend_mode) {
// We allow setting this when not initialised and will check if it is supported when initialising.
// After OpenXR is initialised we verify we're setting a supported blend mode.
// We allow setting this when not initialized and will check if it is supported when initializing.
// After OpenXR is initialized we verify we're setting a supported blend mode.
if (!is_initialized() || is_environment_blend_mode_supported(p_blend_mode)) {
environment_blend_mode = p_blend_mode;
return true;