Ahoj,
building it with this recipe, build fails with
error: 1 positional argument in format string, but no arguments were given
--> src/main.rs:532:88
|
532 | Err(error) => panic!("A massive error occured, not sure whats goin on here: \n {}"),
| ^^
More:
[...]
Compiling egui-winit v0.27.2
Compiling eframe v0.27.2
error: 1 positional argument in format string, but no arguments were given
--> src/main.rs:532:88
|
532 | Err(error) => panic!("A massive error occured, not sure whats goin on here: \n {}"),
| ^^
warning: unused imports: `ImageSource` and `epaint::ColorImage`
--> src/main.rs:12:27
|
12 | use eframe::{egui::{self, ImageSource}, epaint::ColorImage};
| ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: unused variable: `error`
--> src/main.rs:532:13
|
532 | Err(error) => panic!("A massive error occured, not sure whats goin on here: \n {}"),
| ^^^^^ help: if this is intentional, prefix it with an underscore: `_error`
|
= note: `#[warn(unused_variables)]` on by default
warning: `pineflash` (bin "pineflash") generated 2 warnings
error: could not compile `pineflash` (bin "pineflash") due to 1 previous error; 2 warnings emitted
Regards!