Fix checks & build

This commit is contained in:
2024-02-21 23:25:53 -07:00
parent 07bb8ccc1d
commit f82d8b9f17
6 changed files with 5 additions and 20 deletions

View File

@@ -40,7 +40,7 @@ fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let dest_path = Path::new(&out_dir).join("parsed-dats.bin");
let mut f = BufWriter::new(File::create(&dest_path).unwrap());
let mut f = BufWriter::new(File::create(dest_path).unwrap());
// Parse dat files
let mut entries = Vec::<(GameEntry, String)>::new();