EOD 11.09.2025

This commit is contained in:
theubusu
2025-09-11 22:04:50 +02:00
parent 838e0271ce
commit eb7d808593
4 changed files with 130 additions and 17 deletions
+3 -3
View File
@@ -27,15 +27,15 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
//println!("file");
let file = File::open(path)?;
println!();
if formats::mstar::is_mstar_file(&file) {
println!("Mstar upgrade file detected!");
formats::mstar::extract_mstar(&file);
formats::mstar::extract_mstar(&file, &output_path)?;
} else {
println!("File format not recognized!");
}
}
Ok(())
}