From 2bf4096dfbe46f39db9a7749db119dbfdafb0329 Mon Sep 17 00:00:00 2001 From: coffee-compiler <22056268-coffee-compiler@users.noreply.gitlab.com> Date: Tue, 16 Jul 2024 18:33:23 +0200 Subject: [PATCH 1/2] replace dx11 with opengl in panic msg --- voxygen/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index bb89fd0e69..ed333dc691 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -204,7 +204,7 @@ fn main() { panic!( "Failed to select a rendering backend! No compatible backends were found. We \ - currently support vulkan, metal, dx12, and dx11.{} If the issue persists, please \ + currently support vulkan, metal, dx12, and opengl.{} If the issue persists, please \ include the operating system and GPU details in your bug report to help us \ identify the cause.", POTENTIAL_FIX From c1d10279caa2fafabcc8718b25b3d0db2378d5d8 Mon Sep 17 00:00:00 2001 From: coffee-compiler <22056268-coffee-compiler@users.noreply.gitlab.com> Date: Tue, 16 Jul 2024 19:14:00 +0200 Subject: [PATCH 2/2] fmt code --- voxygen/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index ed333dc691..ca1b904416 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -204,9 +204,9 @@ fn main() { panic!( "Failed to select a rendering backend! No compatible backends were found. We \ - currently support vulkan, metal, dx12, and opengl.{} If the issue persists, please \ - include the operating system and GPU details in your bug report to help us \ - identify the cause.", + currently support vulkan, metal, dx12, and opengl.{} If the issue persists, \ + please include the operating system and GPU details in your bug report to help \ + us identify the cause.", POTENTIAL_FIX ); },