We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a51004 commit c536cedCopy full SHA for c536ced
src/main.rs
@@ -43,8 +43,8 @@ fn run_native(renderer: eframe::Renderer) -> eframe::Result {
43
fn main() {
44
if let Err(e) = run_native(eframe::Renderer::Wgpu) {
45
eprintln!("Failed to run with wgpu renderer, trying glow. ({e})");
46
- }
47
- if let Err(e) = run_native(eframe::Renderer::Glow) {
48
- eprintln!("Failed to run with wgpu and glow renderer: ({e})");
+ if let Err(e) = run_native(eframe::Renderer::Glow) {
+ eprintln!("Failed to run with wgpu and glow renderer: ({e})");
+ }
49
}
50
0 commit comments