diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-03-28 06:17:54 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-03-28 06:17:54 +0100 |
commit | e334bf6df496ae9ef5b7a13ed2cd0f45d6d48fc2 (patch) | |
tree | 0d1a18eb9eee2cab8c66d9cb644a38f9569cebdc /modules/openxr/register_types.cpp | |
parent | d2f9245ddc868b8ca04a6fb1b912ec4b59512c11 (diff) | |
download | redot-engine-e334bf6df496ae9ef5b7a13ed2cd0f45d6d48fc2.tar.gz |
Tweak OpenXR alert to mention WMR only on Windows
WMR isn't supported on non-Windows platforms, so there's no point
in mentioning it in the error message as it's not a possible
cause for OpenXR not initializing.
Diffstat (limited to 'modules/openxr/register_types.cpp')
-rw-r--r-- | modules/openxr/register_types.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/openxr/register_types.cpp b/modules/openxr/register_types.cpp index 3d34b27407..ba468b6967 100644 --- a/modules/openxr/register_types.cpp +++ b/modules/openxr/register_types.cpp @@ -135,7 +135,9 @@ void initialize_openxr_module(ModuleInitializationLevel p_level) { const char *init_error_message = "OpenXR was requested but failed to start.\n" "Please check if your HMD is connected.\n" - "When using Windows MR please note that WMR only has DirectX support, make sure SteamVR is your default OpenXR runtime.\n" +#ifdef WINDOWS_ENABLED + "When using Windows Mixed Reality, note that WMR only has DirectX support. Make sure SteamVR is your default OpenXR runtime.\n" +#endif "Godot will start in normal mode.\n"; WARN_PRINT(init_error_message); |