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:
@@ -87,7 +87,7 @@ impl MyEguiApp {
|
||||
let contents = serde_json::to_string(&self.rename_map);
|
||||
if let Ok(contents) = contents{
|
||||
let res = std::fs::write(&rename_file_path, contents);
|
||||
println!("Write rename file at {:?} with result: {:?}",rename_file_path, res);
|
||||
println!("Write rename file at {rename_file_path:?} with result: {res:?}");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -212,7 +212,7 @@ where
|
||||
}
|
||||
}
|
||||
if let Err(err) = setup_proton_games(&shortcuts_to_proton){
|
||||
eprintln!("failed to save proton settings: {:?}",err);
|
||||
eprintln!("failed to save proton settings: {err:?}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user