1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-23 21:17:45 +00:00

Allow GameData::read_excel_sheet to fial

This commit is contained in:
Joshua Goins 2023-04-09 15:35:54 -04:00
parent 49ed178bb2
commit 22b645ec3b

View file

@ -252,7 +252,7 @@ impl GameData {
EXD::calculate_filename(name, language, &exh.pages[page])
);
let exd_file = self.extract(&exd_path).unwrap();
let exd_file = self.extract(&exd_path)?;
EXD::from_existing(exh, &exd_file)
}