fixed: a fixed input file path

This commit is contained in:
2025-03-19 19:37:58 +08:00
parent cd817bb0b0
commit 2b214cec01
3 changed files with 8 additions and 10 deletions

View File

@@ -45,9 +45,7 @@ fn main_entry() -> eyre::Result<()> {
println!("Loading embedded file name table...");
let filename_table = FileNameTable::from_bytes(FILE_NAME_LIST)?;
let file_path =
"E:/SteamLibrary/steamapps/common/MonsterHunterWilds/re_chunk_000.pak.sub_000.pak";
let file = fs::File::open(file_path)?;
let file = fs::File::open(input_path)?;
let mut reader = io::BufReader::new(file);
println!("Reading pak archive...");