main: Add auto folder creation, mtk_pkg: add custom key support + some fixes., general: message costistency

This commit is contained in:
theubusu
2025-12-10 20:27:32 +01:00
parent a8ddeeabed
commit f993a3df70
8 changed files with 78 additions and 30 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ pub fn extract_nvt_timg(mut file: &File, output_folder: &str) -> Result<(), Box<
};
let data = common::read_exact(&mut file, pimg.size as usize)?;
println!("\n({}) - {}, Size: {}, Dest: {}, Compression: {}", pimg_i, pimg.name(), pimg.size, pimg.dest_dev(), pimg.comp_type());
println!("\n#{} - {}, Size: {}, Dest: {}, Compression: {}", pimg_i, pimg.name(), pimg.size, pimg.dest_dev(), pimg.comp_type());
let out_data;