aboutsummaryrefslogtreecommitdiff
path: root/games/veloren-weekly/files/patch-unix
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2024-02-07 19:13:27 +0000
committerJan Beich <jbeich@FreeBSD.org>2024-02-08 00:13:03 +0000
commitd82e7a41eb7f9c3d0c352f50b18cef77d2c12aed (patch)
tree513ed0f6aa274646a5b92fffdcf699ef7ea6259b /games/veloren-weekly/files/patch-unix
parentf70300fcd7f776e4297e6769a5a85fbf91a95fb6 (diff)
downloadports-d82e7a41eb7f9c3d0c352f50b18cef77d2c12aed.tar.gz
ports-d82e7a41eb7f9c3d0c352f50b18cef77d2c12aed.zip
games/veloren-weekly: update to s20240207
Diffstat (limited to 'games/veloren-weekly/files/patch-unix')
-rw-r--r--games/veloren-weekly/files/patch-unix6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/veloren-weekly/files/patch-unix b/games/veloren-weekly/files/patch-unix
index 10603bce2e3e..cfcc77aa4d91 100644
--- a/games/veloren-weekly/files/patch-unix
+++ b/games/veloren-weekly/files/patch-unix
@@ -11,14 +11,14 @@ Relax Linux checks for the code works on any non-Windows platform.
let _ = signal_hook::flag::register(signal_hook::consts::SIGUSR1, Arc::clone(&sigusr1_signal));
let (_guards, _guards2) = if basic {
---- voxygen/src/main.rs.orig 2024-01-31 15:30:47 UTC
+--- voxygen/src/main.rs.orig 2024-02-07 19:13:27 UTC
+++ voxygen/src/main.rs
@@ -51,7 +51,7 @@ fn main() {
cli::Commands::ListWgpuBackends => {
#[cfg(target_os = "windows")]
- let backends = &["dx11", "dx12", "vulkan"];
+ let backends = &["opengl", "dx12", "vulkan"];
- #[cfg(target_os = "linux")]
+ #[cfg(not(any(target_os = "windows", target_os = "macos")))]
- let backends = &["vulkan"];
+ let backends = &["opengl", "vulkan"];
#[cfg(target_os = "macos")]
let backends = &["metal"];