diff options
author | Riteo <riteo@posteo.net> | 2024-07-26 07:29:34 +0200 |
---|---|---|
committer | Riteo <riteo@posteo.net> | 2024-07-26 07:29:34 +0200 |
commit | 755dbde8738907ac647de16ea5481eaa5e778dff (patch) | |
tree | 01d0d22c3d2874909d44d227dec67045814633d1 /main | |
parent | e343dbbcc1030f04dc5833f1c19d267a17332ca9 (diff) | |
download | redot-engine-755dbde8738907ac647de16ea5481eaa5e778dff.tar.gz |
Apply prefer_wayland only if no display driver is set
Before this patch any other display driver preference would be
overridden.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/main/main.cpp b/main/main.cpp index e1d53e7f1b..059172b14e 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2631,10 +2631,12 @@ Error Main::setup2(bool p_show_boot_logo) { } } - if (prefer_wayland) { - display_driver = "wayland"; - } else { - display_driver = "default"; + if (display_driver.is_empty()) { + if (prefer_wayland) { + display_driver = "wayland"; + } else { + display_driver = "default"; + } } } } |