mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Inline print variables (#328)
* Inline format messages * Cargo auto fixes
This commit is contained in:
@@ -237,11 +237,11 @@ impl GamesPlatform for HeroicPlatform {
|
||||
) {
|
||||
(false, 0) => "Force games to launch through Heroic Launcher".to_string(),
|
||||
(false, 1) => "One game forced to launch through Heroic Launcher".to_string(),
|
||||
(false, x) => format!("{} games forced to launch through Heroic Launcher", x),
|
||||
(false, x) => format!("{x} games forced to launch through Heroic Launcher"),
|
||||
|
||||
(true, 0) => "Force games to launch directly".to_string(),
|
||||
(true, 1) => "One game forced to launch directly".to_string(),
|
||||
(true, x) => format!("{} games forced to launch directly", x),
|
||||
(true, x) => format!("{x} games forced to launch directly"),
|
||||
};
|
||||
|
||||
egui::CollapsingHeader::new(safe_mode_header).id_source("Heroic_Launcher_safe_launch").show(ui, |ui| {
|
||||
|
||||
Reference in New Issue
Block a user